/* ============================================
   SUNRISE MARINE GROUP - INSTITUTIONAL STYLING
   ============================================ */

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 25, 49, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-item i {
    color: #C9A962;
    font-size: 1rem;
    width: 20px;
}

.dropdown-item:hover {
    background: rgba(201, 169, 98, 0.1);
    padding-left: 28px;
    color: #C9A962;
}

/* Hero Institutional */
.hero-institutional {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #C9A962;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title-institutional {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle-institutional {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: #C9A962;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 3rem;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #C9A962;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Group Overview */
.group-overview {
    background: linear-gradient(135deg, #0A1931 0%, #0f2442 100%);
    padding: 6rem 0;
}

.section-header.centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #C9A962;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Divisions Showcase */
.divisions-showcase {
    background: #0A1931;
    padding: 4rem 0 6rem;
}

.container-fluid {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.division-card {
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.8) 0%, rgba(10, 25, 49, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C9A962, #d4b976);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.division-card:hover::before {
    transform: scaleX(1);
}

.division-card:hover {
    transform: translateY(-8px);
    border-color: #C9A962;
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.15);
}

.division-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #C9A962;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.division-card:hover .division-icon {
    background: rgba(201, 169, 98, 0.2);
    border-color: #C9A962;
    transform: scale(1.1);
}

.division-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.15);
}

.division-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.division-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.division-services {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.division-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.division-services li:last-child {
    border-bottom: none;
}

.division-services li i {
    color: #C9A962;
    font-size: 0.8rem;
}

.btn-division {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.5);
    color: #C9A962;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-division:hover {
    background: #C9A962;
    color: #0A1931;
    border-color: #C9A962;
}

.btn-division i {
    transition: transform 0.3s ease;
}

.btn-division:hover i {
    transform: translateX(5px);
}

/* Investment Section */
.investment-section {
    background: linear-gradient(135deg, #C9A962 0%, #b89651 100%);
    padding: 6rem 0;
    text-align: center;
}

.investment-content {
    max-width: 900px;
    margin: 0 auto;
}

.investment-icon {
    width: 100px;
    height: 100px;
    background: rgba(10, 25, 49, 0.1);
    border: 2px solid rgba(10, 25, 49, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0A1931;
    margin: 0 auto 2rem;
}

.investment-section .section-title {
    color: #0A1931;
    margin-bottom: 1.5rem;
}

.investment-section .section-description {
    color: rgba(10, 25, 49, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #0A1931;
    color: #0A1931;
    padding: 14px 32px;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: #0A1931;
    color: #C9A962;
}

/* Brands Portfolio */
.brands-portfolio {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.brand-logo-placeholder {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: rgba(201, 169, 98, 0.05);
    border-radius: 8px;
}

.brand-logo-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C9A962;
    letter-spacing: 2px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A962;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brand-link:hover {
    gap: 12px;
    color: #d4b976;
}

/* Location Section */
.location-section {
    background: #0A1931;
    padding: 6rem 0;
}

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

.location-details {
    margin: 2rem 0;
}

.location-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-item:last-child {
    border-bottom: none;
}

.location-item i {
    color: #C9A962;
    font-size: 1.5rem;
    width: 30px;
    flex-shrink: 0;
}

.location-item strong {
    color: #C9A962;
    display: block;
    margin-bottom: 0.5rem;
}

.location-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: #C9A962;
}

.location-map {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 98, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-lg i {
    margin-right: 8px;
}

/* Footer Updates */
.footer {
    background: #050d1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    font-size: 1.8rem;
    color: #C9A962;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #C9A962;
    color: #0A1931;
    border-color: #C9A962;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #C9A962;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: #C9A962;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C9A962;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #C9A962;
}

/* Responsive */
@media (max-width: 1200px) {
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-map {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* ============================================
   DIVISION PAGES - ADDITIONAL STYLES
   ============================================ */

.division-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #C9A962;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.division-intro {
    background: linear-gradient(135deg, #0A1931 0%, #0f2442 100%);
    padding: 6rem 0;
}

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

.intro-content .section-title {
    margin-bottom: 2rem;
}

.intro-content .section-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A962;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Services Grid */
.services-grid-section {
    background: #0A1931;
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(15, 36, 66, 0.7) 0%, rgba(10, 25, 49, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #C9A962;
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C9A962;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(201, 169, 98, 0.2);
    border-color: #C9A962;
    transform: scale(1.1);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li i {
    color: #C9A962;
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Why Choose Us */
.why-choose-section {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #C9A962;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    background: rgba(201, 169, 98, 0.2);
    border-color: #C9A962;
    transform: scale(1.1);
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Responsive for division pages */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image img {
        height: 350px;
    }
}

/* ============================================
   NAVAL ENGINEERING & TECHNOLOGY PAGES
   ============================================ */

.expertise-section {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C9A962;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    background: rgba(201, 169, 98, 0.2);
    border-color: #C9A962;
    transform: scale(1.1);
}

.expertise-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.shipyard-section {
    background: #0A1931;
    padding: 6rem 0;
}

.shipyard-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.feature-block:hover {
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C9A962;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   INVESTMENTS PAGE STYLES
   ============================================ */

.investment-overview {
    background: linear-gradient(135deg, #0A1931 0%, #0f2442 100%);
    padding: 6rem 0;
}

.investment-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-badge {
    width: 100px;
    height: 100px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #C9A962;
    margin: 0 auto 2rem;
}

.investment-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C9A962;
    margin: 0 auto 1.5rem;
}

.highlight-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.structure-section {
    background: #0A1931;
    padding: 6rem 0;
}

.structure-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.structure-block {
    position: relative;
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.structure-block:hover {
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.structure-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.15);
}

.structure-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C9A962;
    margin-bottom: 2rem;
}

.structure-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.structure-block p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.structure-features {
    list-style: none;
    padding: 0;
}

.structure-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.structure-features li i {
    color: #C9A962;
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.disclaimer-section {
    background: linear-gradient(135deg, #b89651 0%, #C9A962 100%);
    padding: 6rem 0;
}

.disclaimer-box {
    background: rgba(10, 25, 49, 0.95);
    border: 3px solid #0A1931;
    border-radius: 16px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.2);
    border: 2px solid #C9A962;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #C9A962;
    margin: 0 auto 2rem;
}

.disclaimer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C9A962;
    margin-bottom: 1.5rem;
    text-align: center;
}

.disclaimer-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.disclaimer-content p strong {
    color: #C9A962;
}

.disclaimer-content a {
    color: #C9A962;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.disclaimer-content a:hover {
    opacity: 0.8;
}

.rwa-section {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
}

.rwa-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.rwa-block {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.rwa-block:hover {
    transform: translateY(-5px);
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.rwa-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C9A962;
    margin-bottom: 1.5rem;
}

.rwa-block h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.rwa-block p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.benefits-section {
    background: #0A1931;
    padding: 6rem 0;
}

.stakeholder-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.benefit-header i {
    font-size: 2rem;
    color: #C9A962;
}

.benefit-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.benefit-card ul li i {
    color: #C9A962;
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .investment-highlights {
        grid-template-columns: 1fr;
    }
    
    .rwa-content {
        grid-template-columns: 1fr;
    }
    
    .stakeholder-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .disclaimer-box {
        padding: 2rem 1.5rem;
    }
    
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
    
    .disclaimer-content p {
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT GROUP PAGE STYLES
   ============================================ */

.company-overview {
    background: linear-gradient(135deg, #0A1931 0%, #0f2442 100%);
    padding: 6rem 0;
}

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

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-large {
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-large:hover {
    border-color: #C9A962;
    background: rgba(201, 169, 98, 0.1);
    transform: scale(1.05);
}

.stat-large .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #C9A962;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-large .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.our-story {
    background: #0A1931;
    padding: 6rem 0;
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.5), rgba(201, 169, 98, 0.1));
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C9A962;
    text-align: right;
    flex-shrink: 0;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -26px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: #C9A962;
    border: 3px solid #0A1931;
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.values-section {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #C9A962;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: rgba(201, 169, 98, 0.2);
    border-color: #C9A962;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.leadership-section {
    background: #0A1931;
    padding: 6rem 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.leader-card:hover {
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
    transform: translateY(-5px);
}

.leader-image {
    height: 300px;
    background: rgba(201, 169, 98, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #C9A962;
}

.leader-info {
    padding: 2.5rem;
}

.leader-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: #C9A962;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.leader-contact {
    display: flex;
    gap: 1rem;
}

.leader-contact a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-contact a:hover {
    background: #C9A962;
    color: #0A1931;
    border-color: #C9A962;
}

.presence-section {
    background: linear-gradient(135deg, #0f2442 0%, #0A1931 100%);
    padding: 6rem 0;
}

.presence-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.presence-map {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 98, 0.2);
}

.presence-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.presence-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(15, 36, 66, 0.5);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.presence-block:hover {
    border-color: #C9A962;
    background: rgba(15, 36, 66, 0.8);
}

.presence-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #C9A962;
    flex-shrink: 0;
}

.presence-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
}

.presence-block p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.presence-block a {
    color: #C9A962;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.presence-block a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 50px;
    }
    
    .timeline-year {
        width: 70px;
    }
    
    .timeline-year::after {
        right: -22px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
