@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&family=Montserrat:wght@600;700&display=swap');

:root {
    --primary: #0F1E3A;
    --secondary: #2C4B7A;
    --accent: #F4F6F8;
    --text: #2B2B2B;
    --text-muted: #4a5568;
    --white: #ffffff;
    --border-soft: #d8dee6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

.text-white {
    color: var(--white);
}

.large-text {
    font-size: 1.2rem;
}

.highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--accent);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.hero-blend {
    background: transparent;
}

.header.hero-blend .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.header.hero-blend .nav-link:hover {
    color: white;
}

.header.hero-blend .nav-logo a {
    color: white;
}

.navbar {
    padding: 0.9rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    max-width: 260px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(15, 30, 58, 0.18));
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.15rem 0;
}

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

.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    margin: 3px 0;
    transition: 0.3s;
}

.header.hero-blend .nav-toggle span {
    background: white;
}

.header.menu-open {
    background: rgba(255, 255, 255, 0.98);
}

.header.menu-open .nav-toggle span {
    background: var(--text);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 30, 58, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b162c, #1f3b66);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 30, 58, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(44, 75, 122, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #1f3b66, #0b162c);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(44, 75, 122, 0.38);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 0;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

body.page-animate main {
    animation: pageFadeIn 0.45s ease both;
}

body.page-leaving main {
    opacity: 0;
    transform: translateY(14px);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.bg-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.bg-gradient > * {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, #375f98 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-text p {
    font-size: clamp(1rem, 2.1vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

.hero-graphic {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: floatHero 6s ease-in-out infinite;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--accent), #e6ebf1);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Professional Icons */
.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(15, 30, 58, 0.28);
}

.icon-large {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 2rem;
}

.icon-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Grid Layouts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card,
.category-item,
.delight-card,
.approach-item,
.partner-card,
.benefit-card,
.standard-item,
.process-step,
.why-card {
    will-change: transform;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.category-item:hover {
    background: #e9eef5;
    color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(44, 75, 122, 0.18);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-highlight {
    background: linear-gradient(135deg, var(--accent), #e8edf2);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 6px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(44, 75, 122, 0.14);
}

.mission-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

/* Professional Image Sections */
.image-section {
    background: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1920&h=600&fit=crop') center/cover;
    padding: 6rem 0;
    position: relative;
    color: var(--white);
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 30, 58, 0.82), rgba(44, 75, 122, 0.82));
}

.image-section > * {
    position: relative;
    z-index: 1;
}

/* Delight Grid */
.delight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.delight-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.delight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.mv-card {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.approach-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.partner-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Benefits and Standards */
.benefits-grid, .standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.benefit-card, .standard-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.benefit-card:hover, .standard-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(15, 30, 58, 0.3);
}

/* Goal Features */
.goal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
}

.goal-item h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.goal-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-soft);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(44, 75, 122, 0.15);
}

.contact-info-section {
    background: linear-gradient(135deg, var(--accent), #e8edf2);
    padding: 3rem;
    border-radius: 20px;
}

.contact-info .info-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-links {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-soft);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary), #1a325e);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/6169668/pexels-photo-6169668.jpeg?auto=compress&cs=tinysrgb&w=1920&h=400&fit=crop') center/cover;
    opacity: 0.16;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #b9cbe7;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.9rem;
    /* background: rgba(255, 255, 255, 0.96); */
    border-radius: 12px;
    padding: 0.4rem 0.65rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
}

.footer-brand-name {
    margin-bottom: 0.8rem !important;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #d8e1ee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #b9cbe7;
}

.footer-contact p,
.footer-links p {
    margin-bottom: 0.8rem;
    color: #d8e1ee;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #d8e1ee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(203, 213, 225, 0.8);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: left 0.35s ease, opacity 0.35s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.25rem;
        margin-top: 2.5rem;
        width: min(92%, 420px);
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        font-weight: 600;
        color: #111827;
        background: var(--accent);
        border: 1px solid var(--border-soft);
        border-radius: 12px;
        padding: 0.85rem 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1d4ed8;
        background: #eef2ff;
        border-color: #bfdbfe;
    }

    .header.hero-blend .nav-menu .nav-link {
        color: #111827;
        background: var(--accent);
    }

    .header.hero-blend .nav-menu .nav-link:hover,
    .header.hero-blend .nav-menu .nav-link.active {
        color: #1d4ed8;
        background: #eef2ff;
    }

    .nav-toggle {
        display: flex;
        z-index: 999;
    }

    .nav-logo-img {
        height: 46px;
        max-width: 220px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }

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

    .hero-text h1 {
        font-size: clamp(1.95rem, 8vw, 2.5rem);
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-graphic {
        height: 350px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .categories-grid,
    .why-choose-grid,
    .delight-grid,
    .approach-grid,
    .partners-grid,
    .benefits-grid,
    .standards-grid,
    .process-flow {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .nav-logo-img {
        height: 40px;
        max-width: 190px;
    }

    .footer-brand-link {
        padding: 0.35rem 0.5rem;
    }

    .footer-logo-img {
        height: 50px;
        max-width: 220px;
    }

    .hero-graphic {
        height: 290px;
    }

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

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

    .feature-card,
    .category-item,
    .why-card,
    .delight-card,
    .approach-item,
    .partner-card,
    .benefit-card,
    .standard-item,
    .process-step,
    .contact-form,
    .contact-info-section {
        padding: 1.5rem;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s infinite;
}

@keyframes floatHero {
    0%, 100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-8px);
    }
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    main {
        transition: none;
    }

    body.page-animate main {
        animation: none;
    }

    body.page-leaving main {
        opacity: 1;
        transform: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}