/* About Page Styles */
.about-page {
    padding-top: 0;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

/* Section Padding */
.section-padding {
    padding: 6rem 0;
    position: relative;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

/* Hero Section */
.hero-about {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-navy) 0%, #00264d 100%);
    color: white;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX2Jhc2UiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm5fYmFzZSkiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.15;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.hero__content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.hero-tagline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--color-gold);
}

.hero__title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero__title-line {
    display: block;
}

.hero__title-line.script {
    font-family: 'Playfair Display', serif;
    color: var(--color-gold);
    font-style: italic;
    font-weight: 600;
}

.hero__subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.hero__image {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 10px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cta-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.cta-wave .shape-fill {
    fill: #f9f9f9;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Intro */
.about-intro {
    padding: 8rem 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

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

.about-content {
    position: relative;
    z-index: 1;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 auto 4rem;
    max-width: 800px;
    position: relative;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.highlight {
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
    transition: all 0.3s ease;
}

.tagline-container {
    padding: 3rem 2.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.tagline-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.tagline-container:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.08);
}

.tagline-container:hover:before {
    transform: scaleY(1);
    transform-origin: top;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-navy);
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.tagline .always {
    color: var(--color-gold);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.tagline .always:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
    transition: all 0.3s ease;
}

.quote-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.8s;
    animation-fill-mode: both;
}

.quote-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 0;
}

.quote {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-navy);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0 0 1.5rem;
    font-weight: 500;
}

.quote footer {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.quote footer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: var(--color-gold);
    opacity: 0.5;
}

/* Mission Section */
.mission-section {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mission-text {
    text-align: left;
    animation: fadeInLeft 1s ease-out;
    animation-fill-mode: both;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.mission-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-navy);
    margin: 2rem 0 1.5rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.mission-text h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.mission-text h3:hover:after {
    width: 100%;
}

.mission-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeInRight 1s ease-out 0.2s;
    animation-fill-mode: both;
    margin: 0 auto;
}

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

.mission-ornament {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="%23D4AF37" opacity="0.1"><path d="M100,0 C155.228,0 200,44.772 200,100 C200,155.228 155.228,200 100,200 C44.772,200 0,155.228 0,100 C0,44.772 44.772,0 100,0 Z"></path></svg>');
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.mission-ornament-1 {
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.mission-ornament-2 {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Values Section */
.values-section {
    position: relative;
    padding: 8rem 0;
    background-color: #fff;
    overflow: hidden;
}

.values-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23f5f5f5" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30z"></path></svg>');
    opacity: 0.1;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card .value-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--color-gold);
}

.value-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-container {
    background-color: var(--color-white);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    transition: all 0.4s ease;
}

.value-title {
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.value-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.value-card:hover .value-title:after {
    width: 60px;
    opacity: 1;
}

.value-description {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.value-card:hover .value-description {
    color: var(--color-text-dark);
}

/* Animation for staggered loading */
.value-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.value-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.value-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.value-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

/* CTA Section */
.cta-section {
    position: relative;
    background: #f8f9fa;
    color: var(--color-navy);
    overflow: hidden;
    z-index: 1;
}

.cta-wave-top,
.cta-wave-bottom {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cta-wave-top {
    top: -1px;
}

.cta-wave-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.cta-wave-top svg,
.cta-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.cta-container {
    position: relative;
    padding: 4rem 0;
    background: var(--color-navy);
    color: white;
    overflow: hidden;
}

.cta-box {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(145deg, #0a2d5a 0%, #001f3f 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
}

.cta-wave-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
    overflow: hidden;
}

.cta-wave-inner svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.cta-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-badge:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

.cta-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.cta-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-gold);
}

.cta-text {
    font-size: 1.3rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.cta-text h2 {
    font-size: 2.8rem;
    margin: 0 auto 1.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 100%;
    display: block;
}

.cta-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.4s ease;
    border-radius: 50px;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-navy) !important;
    border: 2px solid var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}

.btn-gold:hover {
    color: var(--color-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:before {
    background: linear-gradient(45deg, #ffd700, #ffea83, #ffd700);
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover:before {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    position: relative;
    overflow: hidden;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline:hover {
    color: var(--color-navy);
    border-color: transparent;
}

.btn-outline:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Floating elements */
.cta-float-1, .cta-float-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.cta-float-1 {
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.cta-float-2 {
    bottom: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 1s;
    animation-direction: reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

/* Responsive Styles */
@media (max-width: 1440px) {
    .hero-about {
        min-height: auto;
        padding: 10rem 0 6rem;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .hero-about {
        padding: 8rem 0 5rem;
    }
    
    .hero-content-wrapper {
        gap: 3rem;
    }
    
    .hero__title {
        font-size: 3.2rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .mission-content,
    .about-grid {
        gap: 3rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-about {
        padding: 7rem 0 5rem;
        text-align: center;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 4rem;
    }
    
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero__image {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-wrap: wrap;
    }
    
    .btn {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding: 6rem 0 4rem;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__title-line {
        display: inline;
    }
    
    .hero__subtitle {
        font-size: 1.15rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .quote-card {
        padding: 2.5rem 2rem;
    }
    
    .quote {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin: 1.5rem auto 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .value-card {
        padding: 2.5rem 2rem;
    }
    
    .cta-float-1,
    .cta-float-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-about {
        padding: 5rem 0 3rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .tagline {
        font-size: 1.6rem;
        padding: 2rem 1.5rem;
    }
    
    .tagline-container {
        margin: 1.5rem 0;
    }
    
    .quote-card {
        padding: 2rem 1.5rem;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .quote footer {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin: 1rem auto 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.05rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-title {
        font-size: 1.4rem;
    }
    
    .value-description {
        font-size: 1rem;
    }
}

/* Animation Adjustments for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero__content,
    .hero__image,
    .tagline-container,
    .quote-container,
    .mission-text,
    .mission-image,
    .value-card,
    .cta-content {
        animation: none !important;
    }
}
