:root {
    --primary-color: #0D1B2A;
    --primary-light: #1E3A5F;
    --secondary-color: #C8A951;
    --accent-color: #DDB96A;
    --text-color: #1E293B;
    --text-light: #64748B;
    --bg-surface: #FFFFFF;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.04), 0 2px 4px -2px rgb(0 0 0 / 0.04);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.06), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.06);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title.center {
    text-align: center;
}

.underline {
    height: 5px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--bg-surface);
}


.btn-primary,
.btn-secondary,
.btn-primary-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-primary-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-primary-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links li a:not(.btn-primary-outline) {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:not(.btn-primary-outline):hover {
    color: var(--primary-color);
}

.nav-links li a:not(.btn-primary-outline):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}


.nav-links li a:not(.btn-primary-outline).active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links li a:not(.btn-primary-outline).active::after {
    width: 100%;
}


.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #0D1B2A;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.90) 0%, rgba(30, 58, 95, 0.75) 60%, rgba(13, 27, 42, 0.85) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

/* Breadcrumb trail inside hero */
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 22px;
}

.page-hero-breadcrumb a {
    color: rgba(148, 163, 184, 0.85);
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--secondary-color);
}

.page-hero-breadcrumb i {
    font-size: 0.6rem;
    color: rgba(148, 163, 184, 0.45);
}

.page-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 45%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.12;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

/* Decorative gold divider */
.page-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-hero-divider span {
    display: block;
    height: 1.5px;
    width: 48px;
    background: linear-gradient(90deg, transparent, var(--secondary-color));
    border-radius: 2px;
}

.page-hero-divider span:last-child {
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.page-hero-divider i {
    color: var(--secondary-color);
    font-size: 0.65rem;
    opacity: 0.8;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-surface);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 81, 0.2);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-map {
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    min-height: 480px;
    display: block;
}


.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(30, 58, 95, 0.78) 100%), url('img/hero_bg.png') center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #C8A951 60%, #DDB96A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 45px;
    color: #b8c8da;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.5;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-text p strong {
    color: var(--primary-color);
}

.about-objectives {
    flex: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.glass-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 169, 81, 0.25);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.value-card:hover .icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-surface);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}


.service-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--bg-surface), transparent);
}

.service-content {
    padding: 35px 30px;
    flex-grow: 1;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.why-item {
    display: flex;
    gap: 25px;
    background: var(--bg-surface);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    align-items: flex-start;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--secondary-color);
    opacity: 0.4;
    line-height: 0.9;
    min-width: 60px;
}

.why-text h3 {
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1.3rem;
}

.why-text p {
    color: var(--text-light);
    font-size: 1rem;
}

.footer {
    background: linear-gradient(160deg, #0a1628 0%, #0D1B2A 60%, #112240 100%);
    color: #94a3b8;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.footer-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    padding: 5px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-about p {
    font-size: 1.1rem;
    max-width: 450px;
}

.footer-contact h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
}

.footer-contact ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 169, 81, 0.2);
    padding: 25px 0;
    text-align: center;
    font-size: 0.95rem;
    color: #6b7d9a;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT PAGE — New Sections
   ============================================ */

/* Section subtitle helper */
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 12px auto 0;
}

/* --- Our History / Founder Card --- */
.history-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}

.founder-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.founder-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(13,27,42,0.18);
}

.founder-text h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.founder-title {
    color: var(--secondary-color) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.04em;
    margin-bottom: 16px !important;
    text-transform: uppercase;
}

.founder-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

/* Certification list */
.cert-list {
    list-style: none;
    margin: 10px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cert-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.cert-list li i {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.cert-list li strong {
    color: var(--primary-color);
}

.history-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
    padding: 24px 32px;
    border-left: 4px solid var(--secondary-color);
    background: rgba(200,169,81,0.06);
    border-radius: 0 16px 16px 0;
}

/* --- Three Pillars of Security --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.pillar-card {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200,169,81,0.2);
}

.pillar-icon {
    width: 68px;
    height: 68px;
    background: rgba(200,169,81,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
    transform: scale(1.08) rotate(5deg);
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.75;
}

.pillar-source {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(100,116,139,0.6);
    font-style: italic;
}

/* --- Who We Are --- */
.who-we-are-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    align-items: center;
}

.who-icon-wrap {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary-color);
    box-shadow: 0 16px 48px rgba(13,27,42,0.20);
    flex-shrink: 0;
}

.who-text-col p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.who-text-col p strong {
    color: var(--primary-color);
}

/* --- Mission & Vision --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,169,81,0.12) 0%, transparent 70%);
    pointer-events: none;
}

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

.mv-icon {
    width: 72px;
    height: 72px;
    background: rgba(200,169,81,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0 auto 24px;
    border: 2px solid rgba(200,169,81,0.3);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: rgba(200,169,81,0.25);
    transform: scale(1.1);
}

.mv-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.mv-card p {
    color: rgba(148,163,184,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

.mv-card p strong {
    color: #e2e8f0;
}

/* ============================================
   RESPONSIVE OVERRIDES — All Devices
   ============================================ */

/* ---- Large Tablets / Small Laptops (≤1024px) ---- */
@media (max-width: 1024px) {
    .container {
        width: 92%;
    }

    .hero-content h1 {
        font-size: 3.4rem;
    }

    .about-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ---- Tablets & Large Phones (≤768px) ---- */
@media (max-width: 768px) {

    /* Navbar */
    .nav-links {
        position: absolute;
        right: -100%;
        top: 78px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
        padding: 24px 0 30px;
        border-radius: 0 0 20px 20px;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-links li:last-child {
        padding-top: 16px;
        border-bottom: none;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        align-items: center;
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }

    /* Sections */
    .section-padding {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    /* About */
    .about-grid {
        flex-direction: column;
        gap: 36px;
    }

    .about-text,
    .about-objectives {
        flex: unset;
        width: 100%;
    }

    /* Core Values */
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Why Choose Us */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 0.9rem;
    }

    /* Page Hero */
    .page-hero {
        min-height: 420px;
    }

    .page-hero .container {
        padding-top: 70px;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-map {
        min-height: 320px;
    }
}

/* ---- Mobile Phones (≤480px) ---- */
@media (max-width: 480px) {

    .container {
        width: 94%;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Page Hero */
    .page-hero {
        min-height: 360px;
    }

    .page-hero .container {
        padding-top: 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    /* Section headings */
    .section-title h2 {
        font-size: 1.9rem;
    }

    /* Navbar */
    .logo-text {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    /* About */
    .glass-card {
        padding: 30px 24px;
    }

    .glass-card h3 {
        font-size: 1.3rem;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 28px 18px;
    }

    .value-card .icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    /* Services */
    .service-img-wrapper {
        height: 200px;
    }

    .service-content {
        padding: 24px 20px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    /* Why Us */
    .why-item {
        padding: 24px 20px;
        gap: 18px;
    }

    .why-number {
        font-size: 2.4rem;
        min-width: 48px;
    }

    .why-text h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 56px 0 0;
    }

    .footer-logo {
        height: 58px;
        width: 58px;
    }

    .footer-about p {
        font-size: 1rem;
    }

    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .footer-contact ul li {
        font-size: 0.95rem;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* ---- Small Phones (≤375px) ---- */
@media (max-width: 375px) {

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-primary-outline {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .why-item {
        flex-direction: column;
        gap: 10px;
    }

    .why-number {
        font-size: 2rem;
    }
}