/* Highly Responsive & Premium About Page Styles */

:root {
  --brand-primary: #0F766E;
  --brand-primary-dark: #0d645d;
  --brand-secondary: #D4AF37;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.2);
}

.about-hero {
    position: relative;
    padding: 10rem 1rem 6.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(3,35,30,0.92) 0%, rgba(15,118,110,0.85) 100%), url('../images/hero-banner.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.about-hero .about-container {
    position: relative;
    z-index: 2;
}
.breadcrumb-min {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    display: inline-block;
    background: rgba(0,0,0,0.25);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}
.breadcrumb-min a { color: #fff; text-decoration: none; transition: color 0.3s; }
.breadcrumb-min a:hover { color: var(--brand-secondary); }
.breadcrumb-min span { margin: 0 0.8rem; color: rgba(255,255,255,0.4); }

.about-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.about-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sections */
.about-sec {
    padding: 6rem 1rem;
    background: #ffffff;
    position: relative;
}
.about-sec--alt {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}
.about-header h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.about-header p {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Fluid Grids (replaces strict media queries) */
.about-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(Min(100%, 450px), 1fr));
    gap: 4rem;
    align-items: center;
}
.about-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(Min(100%, 320px), 1fr));
    gap: 2.5rem;
}

/* Typography Content */
.about-content-text h3 {
    font-size: clamp(1.75rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.25;
}
.about-content-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.05rem);
}
.about-content-text blockquote {
    background: #f0fdfa;
    border-left: 4px solid var(--brand-primary);
    padding: 1.75rem 2rem;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: #0f172a;
    margin: 2.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.05);
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}
.about-img:hover {
    transform: translateY(-8px);
}

/* Premium Card (Offer Card) */
.offer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(15, 118, 110, 0.1);
    border-color: #cbd5e1;
}
.offer-card:hover::before {
    opacity: 1;
}

/* Values Box */
.about-value-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-value-box:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.08);
    transform: translateY(-4px);
}
.value-icon-min {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f0fdfa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.about-value-box:hover .value-icon-min {
    background: var(--brand-primary);
}
.value-icon-min i {
    color: var(--brand-primary);
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}
.about-value-box:hover .value-icon-min i {
    color: #ffffff;
    transform: scale(1.15) rotate(5deg);
}
.about-value-box h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}
.about-value-box p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Modern List */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}
.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    line-height: 1.6;
    font-size: 1.05rem;
}
.offer-list li:last-child {
    border-bottom: none;
}
.offer-list li strong {
    color: #0f172a;
    font-weight: 700;
}
.offer-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 22px;
    height: 22px;
}

/* Animated Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.5rem 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.tags-cloud-animated {
    display: inline-block;
    animation: scroll-left 40s linear infinite;
}
.tags-cloud-animated:hover {
    animation-play-state: paused;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tag-min {
    background: #f8fafc;
    color: #0f172a;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.tag-min i { width: 18px; height: 18px; color: var(--brand-primary); }
.tag-min:hover {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(15, 118, 110, 0.2);
}
.tag-min:hover i { color: #fff; }

/* Interactive FAQ */
.faq-minimal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.faq-row {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-row:hover {
    border-color: #cbd5e1;
}
.faq-row.active {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.06);
}
.faq-row-q {
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    font-size: 1.15rem;
    user-select: none;
    line-height: 1.4;
    gap: 1rem;
}
.faq-row-q i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.35rem;
    border-radius: 50%;
    flex-shrink: 0;
}
.faq-row.active .faq-row-q {
    color: var(--brand-primary);
    background: #f0fdfa;
}
.faq-row.active .faq-row-q i {
    transform: rotate(45deg);
    color: #ffffff;
    background: var(--brand-primary);
}
.faq-row-a {
    padding: 0 1.75rem;
    color: #475569;
    line-height: 1.8;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-row.active .faq-row-a {
    padding: 0.5rem 1.75rem 1.75rem;
    max-height: 500px;
    opacity: 1;
    background: #f0fdfa;
}

/* Simple CTA Block */
.about-cta {
    background: linear-gradient(135deg, #052e2a 0%, #083d38 100%);
    color: #ffffff;
    padding: 7rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    z-index: 1;
}
.about-cta .about-container { z-index: 2; position: relative; }
.about-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}
.about-cta p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.btn-white {
    background: #ffffff;
    color: var(--brand-primary-dark);
    padding: 1.1rem 2.5rem;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.btn-outline-white {
    background: transparent;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
}
