/* ===== About Us Page Specific Styles ===== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.1); }
}

.animate-fadeUp {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://ethics-fleet.com/wp-content/uploads/2026/03/bulk-ship.jpg?w=3840&q=95') center/cover no-repeat;
    z-index: 1;
    opacity: 0.55;
    filter: brightness(1.00) contrast(1.1) saturate(1.1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,22,40,0.92) 0%,
        rgba(15,23,42,0.60) 40%,
        rgba(15,23,42,0.20) 70%,
        rgba(15,23,42,0.05) 100%
    );
    z-index: 2;
    backdrop-filter: blur(8px);
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    padding: 40px 40px;
    color: #e8e8e8;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.0rem, 5vw, 4.6rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.0rem;
    color: white;
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}
.hero-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cbd5f5;
    margin: 0 0 48px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}
.hero-stat-number {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(59,130,246,0.7);
    display: block;
    margin-bottom: 8px;
}
.hero-stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.92);
}
.hero-buttons {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin: 0 8px;
}
.hero-button-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}
.hero-button-primary:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(59,130,246,0.5);
}
.hero-button-secondary {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
}
.hero-button-secondary:hover {
    background: rgba(255,255,255,0.22);
    border-color: white;
    transform: translateY(-4px);
}
.hero-button-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
}
.hero-button-whatsapp:hover {
    background: linear-gradient(135deg, #34e07c 0%, #1da66d 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(37,213,102,0.5);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: #062E31;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0;
}
.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: #CBD5E1;
}
.breadcrumbs a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: white;
}
.breadcrumbs span {
    color: white;
    font-weight: 600;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-title .highlight {
    color: #D4AF37;
}
.section-description {
    font-size: 1.1rem;
    color: #CBD5E1;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}
.values-bg, .timeline-bg, .memberships-bg, .why-bg, .cta-bg {
    background: rgba(0, 0, 0, 0.2);
}

/* ===== WHO WE ARE SECTION ===== */
.who-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.who-content p {
    color: #CBD5E1;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    font-size: 1.05rem;
}
.who-content .section-title {
    text-align: center;
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.value-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}
.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37, #B38F2A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #062E31;
}
.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}
.value-card p {
    color: #CBD5E1;
    font-size: 0.95rem;
}

/* ===== LEGACY SECTION ===== */
.legacy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.legacy-content p {
    color: #CBD5E1;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* ===== TIMELINE SECTION ===== */
.timeline {
    position: relative;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37, transparent);
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}
.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
}
.timeline-dot {
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.3);
    animation: pulseGlow 2s infinite;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}
.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.timeline-content:hover {
    transform: translateX(5px);
    border-color: #D4AF37;
}
.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}
.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}
.timeline-content p {
    color: #CBD5E1;
}

/* ===== CERTIFICATIONS GRID ===== */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.cert-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}
.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}
.cert-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}
.cert-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
}
.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}
.cert-card p {
    color: #CBD5E1;
    font-size: 0.95rem;
}
.cert-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #D4AF37;
    margin-top: 15px;
}

/* ===== MEMBERSHIPS GRID ===== */
.memberships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.membership-card {
    background: linear-gradient(135deg, rgba(6, 46, 49, 0.9), rgba(11, 59, 63, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.membership-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}
.membership-icon {
    font-size: 3.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}
.membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.membership-card p {
    color: #CBD5E1;
    margin-bottom: 20px;
}
.membership-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.membership-link:hover {
    gap: 12px;
}

/* ===== CAPABILITIES GRID ===== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.capability-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
}
.capability-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}
.capability-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}
.capability-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: #D4AF37;
}
.capability-header h3 {
    font-size: 1.3rem;
    color: white;
    line-height: 1.4;
}
.capability-card ul {
    list-style: none;
}
.capability-card li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CBD5E1;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}
.capability-card li:last-child {
    border-bottom: none;
}
.capability-card li i {
    color: #D4AF37;
    font-size: 0.8rem;
    min-width: 18px;
    flex-shrink: 0;
}
.capability-card li span {
    white-space: normal;
    line-height: 1.4;
}

/* ===== WHY CHOOSE US GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
}
.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #B38F2A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.6rem;
    color: #062E31;
}
.why-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}
.why-card p {
    color: #CBD5E1;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
    max-width: 900px;
    margin: 40px auto 0;
}
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
    border-color: #D4AF37;
}
.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}
.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: #CBD5E1;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 400px;
}

/* ===== CTA SECTION ===== */
.cta-container {
    background: linear-gradient(135deg, rgba(6, 46, 49, 0.9), rgba(11, 59, 63, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 60px 50px;
    border-radius: 32px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}
.cta-title span {
    color: #D4AF37;
}
.cta-description {
    font-size: 1.1rem;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}
.cta-button-primary {
    background: linear-gradient(135deg, #D4AF37, #B38F2A);
    color: #062E31;
}
.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}
.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .capability-card li {
        white-space: normal;
    }
}
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
        right: auto;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stat-number {
        font-size: 2rem;
    }
    .hero-stat-label {
        font-size: 0.8rem;
    }
    .hero-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin: 4px;
    }
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .cta-container {
        padding: 40px 25px;
    }
    .section {
        padding: 50px 0;
    }
    .section-header {
        padding: 0 15px;
    }
    .who-content p {
        text-align: center;
    }
    .legacy-content p {
        text-align: center;
        padding: 0 15px;
    }
}