/* ================================================================== */
/* holdingPageStyles.css – COMPLETE MERGED & CLEANED VERSION          */
/* ================================================================== */

/* ---------- Reset and Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #a8e6cf 0%, rgba(168, 230, 207, 0.2) 20%, #ffffff 50%, rgba(168, 230, 207, 0.1) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content wrapper */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ---------- Header ---------- */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo {
    height: 11rem;
    width: auto;
    animation: fadeIn 0.6s ease-out;
}

/* ---------- Hero Section ---------- */
.hero {
    padding: 0 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: slideUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #3c5f6e;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: #546b78;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #546b78;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.btn-primary {
    background-color: #3c5f6e;
    color: white;
}

.btn-primary:hover {
    background-color: #546b78;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #3c5f6e;
    border: 2px solid #546b78;
}

.btn-outline:hover {
    background-color: rgba(84, 107, 120, 0.1);
    transform: translateY(-2px);
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.rotated {
    transform: rotate(180deg);
}

/* ---------- Services Section (hidden until "Show More") ---------- */
.services {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(84, 107, 120, 0.2);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(84, 107, 120, 0.4);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #9DD2CA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 1.75rem;
    color: #2A4858;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3c5f6e;
    margin-bottom: 1rem;
}

.service-description {
    color: #546b78;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-btn {
    background: none;
    border: none;
    color: #546b78;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-btn:hover {
    color: #3c5f6e;
    text-decoration: underline;
}

/* ---------- Metrics ---------- */
.metrics {
    padding: 4rem 0;
    text-align: center;
}

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

.metric-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c5f6e;
    margin-bottom: .25rem;
}

.metric-item p {
    color: #546b78;
    font-size: 1rem;
}

/* ---------- Carousel ---------- */
.carousel-section {
    padding: 5rem 0;
    text-align: center;
}

.carousel-header {
    margin-bottom: 2.5rem;
}

.carousel-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c5f6e;
}

.carousel-header p {
    font-size: 1.1rem;
    color: #546b78;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
    background: #f9f9f9;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

/* Navigation arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #3c5f6e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.carousel-nav.prev { left: 1.5rem; }
.carousel-nav.next { right: 1.5rem; }

/* Caption + Dots */
.carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.75rem;
    padding-bottom: 1.5rem;
}

.carousel-caption {
    background: rgba(60, 95, 110, 0.95);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 0.75rem;
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #3c5f6e;
}

/* ---------- Recognition Compact (Hero) ---------- */
.recognition-compact {
    margin-top: 3.5rem;
    text-align: center;
}

.recognition-compact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.rec-compact-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
    transition: transform 0.2s ease;
}

.rec-compact-card:hover {
    transform: translateY(-4px);
}

.rec-compact-logo {
    width: 68px;
    height: auto;
    flex-shrink: 0;
}

.rec-compact-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3c5f6e;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.rec-compact-content p {
    font-size: 0.95rem;
    color: #546b78;
    margin: 0 0 0.6rem 0;
    line-height: 1.5;
}

.rec-compact-list {
    margin: 0.4rem 0 0.8rem 1.1rem;
    padding: 0;
    font-size: 0.93rem;
    color: #546b78;
}

.rec-compact-list li {
    margin-bottom: 0.25rem;
}

.rec-compact-link {
    font-size: 0.9rem;
    color: #3c5f6e;
    font-weight: 600;
    text-decoration: none;
}

.rec-compact-link:hover {
    text-decoration: underline;
}

/* ---------- Recognition Full Section ---------- */
.recognition {
    padding: 4rem 0;
    text-align: center;
}

.recognition h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c5f6e;
    margin-bottom: 2.5rem;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rec-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.rec-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.rec-content h3 {
    font-size: 1.25rem;
    color: #3c5f6e;
    margin-bottom: 0.5rem;
}

.rec-content p {
    color: #546b78;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.rec-content a {
    color: #3c5f6e;
    font-weight: 600;
    text-decoration: underline;
}

/* ---------- Image Zoom Modal ---------- */
.image-zoom-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: auto;
}

.image-zoom-modal.active {
    display: flex;
}

.image-zoom-modal img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: zoomIn 0.3s ease;
}

.image-zoom-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.image-zoom-close:hover {
    background: white;
    transform: scale(1.1);
}

/* ---------- Service/Modal (Detail) ---------- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 1rem;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3c5f6e;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #3c5f6e;
}

.modal-content {
    padding: 1.5rem;
}

/* ---------- Footer ---------- */
.footer {
    background-color: #3c5f6e;
    color: white;
    padding: 1rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: rgba(84, 107, 120, 0.8);
}

.footer-content.only-email {
    justify-content: center;
}

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

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

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .logo { height: 6rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; max-width: 300px; }
    .services-grid { grid-template-columns: 1fr; }
    .carousel-wrapper { border-radius: 1rem; }
    .carousel-slide img { max-height: 400px; }
    .carousel-nav { width: 44px; height: 44px; font-size: 1.3rem; }
    .carousel-caption { font-size: 1rem; padding: 0.6rem 1.4rem; }
}

@media (max-width: 640px) {
    .metrics-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .metric-item h3 { font-size: 2.2rem; }
    .rec-compact-card { padding: 1.3rem; gap: 1rem; }
    .rec-compact-logo { width: 60px; }
    .recognition-compact { margin-top: 2.5rem; }
    .logo { height: 4.5rem; }
    .container { padding: 0 0.75rem; }
    .service-card { padding: 1.5rem; }
}