/* ACL Advanced Compliance Portal - Landing Page Styles */
/* Complete CSS - No Shortcuts */

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

:root {
    /* ACL Brand Colors */
    --color-acl-navy: #0B2C4D;
    --color-acl-navy-light: #0D3A63;
    --color-compliance-cyan: #1EC6FF;
    --color-compliance-cyan-hover: #1AB5E8;
    --color-emc-green: #4FFFB0;
    --color-warning-amber: #FFB74D;
    --color-graph-purple: #7C4DFF;
    --color-white: #ffffff;
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-20: rgba(255, 255, 255, 0.2);
    --color-white-30: rgba(255, 255, 255, 0.3);
    --color-white-60: rgba(255, 255, 255, 0.6);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-80: rgba(255, 255, 255, 0.8);
    --color-white-90: rgba(255, 255, 255, 0.9);
    
    /* Font Family */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-acl-navy) 0%, var(--color-acl-navy-light) 50%, var(--color-acl-navy) 100%);
    min-height: 100vh;
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--color-compliance-cyan);
    color: var(--color-white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white-30);
}

.btn-outline:hover {
    background-color: var(--color-white-10);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-acl-navy);
}

.btn-white:hover {
    background-color: var(--color-white-90);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-icon,
.btn-icon-left {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 44, 77, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-white-10);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-compliance-cyan);
    border-radius: 0.5rem;
}

.logo-text {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-title {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
}

.logo-subtitle {
    color: var(--color-white-70);
    font-size: 0.75rem;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-white-80);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--color-white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(11, 44, 77, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-bottom: 1px solid var(--color-white-10);
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--color-white-10);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-white-90);
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.chamber-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.chamber-content {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(30, 198, 255, 0.2) 0%, rgba(124, 77, 255, 0.2) 100%);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chamber-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    z-index: 10;
}

.chamber-title {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 600;
    z-index: 10;
}

.chamber-subtitle {
    color: var(--color-white-60);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    z-index: 10;
}

.chamber-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, var(--color-white-20) 50px, var(--color-white-20) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, var(--color-white-20) 50px, var(--color-white-20) 51px);
}

/* ===========================
   ICONS
   =========================== */
.icon {
    stroke: currentColor;
    fill: none;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

.icon-cyan {
    color: var(--color-compliance-cyan);
}

.icon-green {
    color: var(--color-emc-green);
}

.icon-purple {
    color: var(--color-graph-purple);
}

.icon-amber {
    color: var(--color-warning-amber);
}

/* ===========================
   CREDENTIALS SECTION
   =========================== */
.credentials-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-white-10);
    border-bottom: 1px solid var(--color-white-10);
    padding: 3rem 0;
}

.credentials-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-white-20);
    border-radius: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.credentials-text {
    text-align: center;
    color: var(--color-white-80);
    font-size: 1.125rem;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-white-10);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-compliance-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-white-60);
    font-size: 1rem;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-white-80);
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   PROFILE / TIMELINE SECTION
   =========================== */
.profile-section {
    padding: 5rem 0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.timeline-year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(30, 198, 255, 0.2);
    border: 1px solid rgba(30, 198, 255, 0.3);
    border-radius: 0.5rem;
    color: var(--color-compliance-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-event {
    flex: 1;
    color: var(--color-white);
    font-size: 1.125rem;
}

.timeline-icon {
    width: 24px;
    height: 24px;
    color: var(--color-emc-green);
    flex-shrink: 0;
}

/* ===========================
   MISSION SECTION
   =========================== */
.mission-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-white-10);
    border-bottom: 1px solid var(--color-white-10);
    padding: 5rem 0;
}

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

.mission-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon {
    width: 48px;
    height: 48px;
    color: var(--color-compliance-cyan);
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--color-white-90);
}

/* ===========================
   ACCREDITATION SECTION
   =========================== */
.accreditation-section {
    padding: 5rem 0;
}

.accreditation-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.accreditation-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.anab-logo {
    text-align: center;
}

.anab-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 128px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-white-20);
    border-radius: 1rem;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.anab-text {
    color: var(--color-white-80);
    font-size: 1.125rem;
}

.accreditation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accreditation-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--color-emc-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.accred-title {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.accred-desc {
    color: var(--color-white-70);
    font-size: 0.875rem;
}

.accred-btn {
    margin-top: 1rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-white-10);
    border-bottom: 1px solid var(--color-white-10);
    padding: 5rem 0;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-white-90);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.about-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.about-icon {
    margin: 0 auto 0.75rem;
}

.about-feature-text {
    color: var(--color-white);
    font-weight: 600;
}

.about-certification {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.about-closing {
    font-size: 1.125rem;
    text-align: center;
    font-style: italic;
    color: var(--color-white-90);
    padding-top: 1rem;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.icon-cyan-bg {
    background: rgba(30, 198, 255, 0.1);
}

.icon-green-bg {
    background: rgba(79, 255, 176, 0.1);
}

.icon-purple-bg {
    background: rgba(124, 77, 255, 0.1);
}

.icon-amber-bg {
    background: rgba(255, 183, 77, 0.1);
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-standards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.standard-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white-80);
    font-size: 0.875rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-cyan {
    background-color: var(--color-compliance-cyan);
}

.dot-green {
    background-color: var(--color-emc-green);
}

.dot-purple {
    background-color: var(--color-graph-purple);
}

/* ===========================
   WHY ACL SECTION
   =========================== */
.why-acl-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-white-10);
    border-bottom: 1px solid var(--color-white-10);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-content {
    display: flex;
    gap: 1rem;
}

.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-desc {
    color: var(--color-white-70);
    font-size: 0.9375rem;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.why-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-cyan {
    color: var(--color-compliance-cyan);
}

.stat-green {
    color: var(--color-emc-green);
}

.stat-purple {
    color: var(--color-graph-purple);
}

.why-stat-label {
    color: var(--color-white-80);
}

/* ===========================
   PORTAL SECTION
   =========================== */
.portal-section {
    padding: 5rem 0;
}

.portal-card {
    background: linear-gradient(135deg, var(--color-compliance-cyan) 0%, var(--color-graph-purple) 100%);
    border-radius: 0.75rem;
    padding: 3rem;
}

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

.portal-icon {
    width: 64px;
    height: 64px;
    color: var(--color-white);
    margin: 0 auto 1.5rem;
}

.portal-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.portal-text {
    font-size: 1.25rem;
    color: var(--color-white-90);
    margin-bottom: 2rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-white-10);
    padding: 5rem 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white-10);
    border-radius: 0.75rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-label {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--color-white-80);
}

.map-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 256px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-white-20);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-icon {
    width: 48px;
    height: 48px;
    color: var(--color-compliance-cyan);
    margin-bottom: 0.75rem;
}

.map-text {
    color: var(--color-white-80);
    font-size: 1rem;
}

.map-subtext {
    color: var(--color-white-60);
    font-size: 0.875rem;
}

.contact-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-white-10);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--color-acl-navy);
    border-top: 1px solid var(--color-white-10);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-compliance-cyan);
    border-radius: 0.5rem;
    color: var(--color-white);
    font-weight: 700;
}

.footer-text {
    color: var(--color-white-60);
    font-size: 0.875rem;
}

.footer-heading {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--color-white-60);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--color-white-10);
    gap: 1rem;
}

.footer-copyright {
    color: var(--color-white-60);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: var(--color-white-60);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--color-white);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablets */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .nav-section {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-stats-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section,
    .profile-section,
    .mission-section,
    .accreditation-section,
    .about-section,
    .services-section,
    .why-acl-section,
    .portal-section,
    .contact-section {
        padding: 3rem 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .credentials-grid {
        gap: 1rem;
    }

    .cert-badge {
        width: 80px;
        height: 56px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .chamber-icons {
        gap: 1rem;
    }

    .icon-lg {
        width: 32px;
        height: 32px;
    }

    .icon-xl {
        width: 48px;
        height: 48px;
    }
}
