* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    background: url('../img/home/hero_background.png') no-repeat bottom center,
        linear-gradient(to top, rgba(255, 250, 106, 22%), rgba(255, 250, 106, 22%));
    background-size: cover;
    min-height: 500px;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    color: #051769;
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: #051769;
    max-width: 700px;
    margin: 0 auto;
}

.about-main {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    color: #666;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-text h3 {
    color: #051769;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.5;
}

.about-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */
.vision-mission-section {
    background: linear-gradient(to right, rgb(188, 244, 255) 0%, rgb(244, 253, 255) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 23, 105, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vm-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.vision-card .vm-decoration {
    background: linear-gradient(135deg, #051769 0%, #0a2c8f 100%);
}

.mission-card .vm-decoration {
    background: linear-gradient(135deg, #FFFA6A 0%, #ffd700 100%);
}

.vm-card:hover .vm-decoration {
    transform: scale(1.3);
    opacity: 0.15;
}


.mission-card .vm-icon {
    background: linear-gradient(135deg, #FFFA6A 0%, #ffd700 100%);
    color: #051769;
}

.vm-content h3 {
    color: #051769;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.vm-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}


.vm-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 5rem;
    opacity: 0.08;
    z-index: 1;
    line-height: 1;
}

.vision-card .vm-icon {
    color: #0a2c8f;
}

.mission-card .vm-icon {
    color: #e6b800; /* warm gold for mission energy */
}

/* Optional: subtle wave background accent */
.vision-mission-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 120" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.7" d="M0,64L80,80C160,96,320,128,480,117.3C640,107,800,53,960,48C1120,43,1280,85,1360,106.7L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}
/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    background: white;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #051769;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: #051769;
    box-shadow: 0 10px 30px rgba(5, 23, 105, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #051769 0%, #0a2c8f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #d0f0ff 0%, #d0f0ff 100%);
    color: #051769;
    transform: rotate(5deg) scale(1.1);
}

.feature-content h4 {
    color: #051769;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}



/* ============================================
   INFRASTRUCTURE SECTION
   ============================================ */

.infrastructure-section {
    background: linear-gradient(to right, #d0f0ff 0%, #e6faff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background elements */
.infrastructure-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(64, 196, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(255, 170, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.infrastructure-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle 2px at 25% 35%, rgba(10, 31, 94, 0.12), transparent),
        radial-gradient(circle 2px at 70% 65%, rgba(10, 31, 94, 0.1), transparent),
        radial-gradient(circle 1.5px at 45% 55%, rgba(255, 170, 0, 0.08), transparent);
    background-size: 180% 180%;
    animation: gentleFloat 25s ease-in-out infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes gentleFloat {
    0%, 100% { background-position: 0% 0%; }
    50%      { background-position: 100% 100%; }
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: #051769;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.infra-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 31, 94, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.infra-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 70px rgba(10, 31, 94, 0.14);
}

/* Visual / Image area */
.infra-card-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.infra-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.infra-card:hover .infra-card-visual img {
    transform: scale(1.08);
}

/* Overlay gradient on image */
.infra-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 94, 0.45) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating icon badge */
.infra-card-icon {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #40c4ff, #00b7c3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 183, 195, 0.35);
    border: 3px solid white;
    transition: all 0.4s ease;
    z-index: 10;
}

.infra-card:hover .infra-card-icon {
    transform: translateX(-50%) scale(1.12);
    box-shadow: 0 12px 35px rgba(0, 183, 195, 0.5);
}

/* Stat badge */
.stat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffd54f;
    color: #0a1f5e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Text content */
.infra-card-content {
    padding: 55px 28px 40px;
    text-align: center;
}

.infra-card h4 {
    color: #0a1f5e;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.infra-card p {
    color: #455a64;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Wave accent */
.ocean-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 140" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.7" d="M0,64L80,80C160,96,320,128,480,117.3C640,107,800,53,960,48C1120,43,1280,85,1360,106.7L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }
    .infra-card-visual {
        height: 240px;
    }
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .storage-highlight {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .storage-highlight::before {
        display: none;
    }
    
    .storage-image-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-header.ocean h2 {
        font-size: 2.5rem;
    }
    
    .infra-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .storage-visual,
    .storage-info {
        padding: 40px 30px;
    }
    
    .capacity-circle {
        width: 220px;
        height: 220px;
    }
    
    .circle-content .number {
        font-size: 4.5rem;
    }
    
    .storage-info h3 {
        font-size: 2rem;
    }
    
    .storage-features {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .vm-grid {
        gap: 30px;
    }

    .features-grid {
        gap: 25px;
    }

    .storage-highlight {
        grid-template-columns: 250px 1fr;
        gap: 40px;
        padding: 50px 40px;
    }

    .capacity-circle {
        width: 220px;
        height: 220px;
    }

    .circle-content .number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vm-card {
        padding: 40px 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .storage-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
        text-align: center;
    }

    .storage-info h3 {
        justify-content: center;
    }

    .infra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .infra-card-content {
        padding: 15px 8px 4px;
    }
}

@media (max-width: 480px) {
    

    .about-text h3 {
        font-size: 1.5rem;
    }

    .vm-card {
        padding: 30px 20px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .vm-content h3 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .capacity-circle {
        width: 200px;
        height: 200px;
    }

    .circle-content .number {
        font-size: 3.5rem;
    }

    .circle-content .unit {
        font-size: 1.2rem;
    }

    .storage-info h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .infra-card {
        padding: 30px 20px;
    }

    .infra-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .infra-card h4 {
        font-size: 1.2rem;
    }
}

/* ============================================
   OUTLETS SECTION (Original)
   ============================================ */
.outlets-section {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.outlets-section h2 {
    color: #051769;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.outlets-section>p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.outlets-grid {
    display: grid;
    gap: 40px;
    margin: 0 auto;
    margin-top: 40px;
}

.outlet-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.outlet-card:hover {
    transform: translateY(-5px);
}

.outlet-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.outlet-card:nth-child(even) .outlet-content {
    order: 2;
}

.outlet-card:nth-child(even) .outlet-image {
    order: 1;
}

.outlet-content {
    background: #051769;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.outlet-content.dark {
    background: #1a365d;
}

.outlet-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.outlet-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.outlet-image {
    height: 300px;
    overflow: hidden;
}

.outlet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.outlet-card:hover .outlet-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .outlet-card {
        grid-template-columns: 1fr !important;
    }

    .outlet-card .outlet-content,
    .outlet-card .outlet-image {
        order: initial !important;
    }

    .outlet-content {
        padding: 30px 20px;
        text-align: center;
    }

    .outlets-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .outlets-section h2 {
        font-size: 1.5rem;
    }

    .outlet-content h3 {
        font-size: 1.5rem;
    }
}

