/* Bukitmas Group - Custom Styles */
/* GitHub Dark Theme with Premium Aesthetics */

:root {
    --primary: #fbbf24;
    /* GitHub Dark Palette */
    --dark: #0d1117;
    --darker: #010409;
    --border: #30363d;
    --text-main: #c9d1d9;
    --text-muted: #8b949e;
    --accent: #58a6ff;
    --card-bg: #161b22;
    --glass: rgba(13, 17, 23, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin: 0;
    background: #0d1117;
    color: var(--text-main);
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-font-smoothing: antialiased;
}

/* GitHub Glow Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #0d1117;
}

.glow-blob {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(88, 166, 255, 0.12) 0%, rgba(88, 166, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: move-glow 25s infinite alternate ease-in-out;
}

.glow-blob-2 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle at center, rgba(188, 140, 255, 0.1) 0%, rgba(188, 140, 255, 0) 70%);
    animation-delay: -7s;
    animation-duration: 30s;
}

.glow-blob-3 {
    bottom: -300px;
    left: 10%;
    background: radial-gradient(circle at center, rgba(88, 166, 255, 0.08) 0%, rgba(88, 166, 255, 0) 70%);
    animation-delay: -12s;
    animation-duration: 35s;
}

@keyframes move-glow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(100px, 150px) scale(1.1);
    }

    100% {
        transform: translate(-100px, 80px) scale(0.9);
    }
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* GitHub-style Bento & Utility */
.section-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--text-muted);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.1);
}

/* Navbar Modernization */
#mainNav {
    padding: 1rem 0;
    background: var(--glass) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

#mainNav .navbar-nav .nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    transition: var(--transition);
}

#mainNav .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent) !important;
}

/* Elegant Navbar Accent */
#mainNav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
    opacity: 0.5;
}

/* Adjust navbar visibility */
#mainNav {
    top: 0;
    transition: var(--transition);
}

.nav-item .nav-link {
    background: transparent !important;
    transform: none !important;
    margin: 0 10px !important;
}

/* Hero Refinement */
#headeratas {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% -20%, #1e293b, var(--darker));
}

.hero-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(88, 166, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-heading {
    font-size: 5rem !important;
    line-height: 1;
    margin-bottom: 2rem !important;
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #4a9eff 100%);
    color: var(--darker);
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #4a9eff 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.5);
    color: var(--darker);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.video-container {
    border: 1px solid rgba(88, 166, 255, 0.3);
    background: var(--card-bg);
    padding: 8px;
    border-radius: 16px;
    /* Permanent Outer Glow */
    box-shadow: 0 0 40px rgba(88, 166, 255, 0.15), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 40px 0;
    position: relative;
    transition: var(--transition);
}

.video-container:hover {
    box-shadow: 0 0 60px rgba(88, 166, 255, 0.3), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Video loading placeholder */
.video-container .ratio {
    background-image: url('https://img.youtube.com/vi/e7oEc6M-6sQ/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 1;
    pointer-events: none;
}

.video-container iframe {
    pointer-events: none;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.action-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px 8px 10px;
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    animation: pulse-glow 3s infinite;
}

.action-pill .pill-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    margin-right: 14px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.action-pill .chevron {
    margin-left: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: transform 0.3s;
}

.action-pill:hover {
    background: linear-gradient(90deg, #312e81 0%, #4338ca 100%);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 0 30px rgba(88, 166, 255, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
    animation-play-state: paused;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(88, 166, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(88, 166, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(88, 166, 255, 0);
    }
}

.action-pill:hover .chevron {
    transform: translateX(3px);
    opacity: 1;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Bento Grid for Products & Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    background: #1c2128;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.15);
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover img {
    border-color: var(--accent);
}

.stat-card {
    background: rgba(33, 38, 45, 0.4);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.1);
    background: rgba(33, 38, 45, 0.6);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
}

.stat-card p {
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Section Spacing */
section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
}

.bg-darker {
    background-color: var(--darker);
}

.bg-dark {
    background-color: var(--dark);
}

.text-primary {
    color: var(--accent) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--darker) !important;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.4);
    transform: translateY(-2px);
}

/* Simplified Technical Modals */
.portfolio-modal .modal-content {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    padding: 0;
    overflow: hidden;
}

.portfolio-modal .modal-body {
    padding: 3rem 2rem;
    position: relative;
}

.portfolio-modal .btn-close-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    z-index: 10;
}

.portfolio-modal .btn-close-top:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.portfolio-modal img {
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.portfolio-modal h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.item-intro {
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Floating WA */
#wp {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    position: fixed;
    background-color: #25D366;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
    color: #fff;
}

#wp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Language Toggle Button */
.lang-toggle {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}

.lang-toggle:hover {
    background: rgba(88, 166, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.lang-flag {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Elegant Footer */
.elegant-footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    margin-top: 100px;
}

.footer-brand img {
    filter: brightness(1.1);
}

.footer-brand h5 {
    color: #fff;
    font-size: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 2px;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent);
    color: var(--darker);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* Infinite Logo Carousel */
.logo-carousel-section {
    padding: 80px 0;
    overflow: hidden;
}

.logo-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.logo-carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 40s linear infinite;
    width: fit-content;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.logo-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo-carousel-track {
        gap: 30px;
        animation-duration: 30s;
    }

    .logo-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
}

/* Event Photo Carousel */
.event-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
}

.event-carousel-wrapper::before,
.event-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.event-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.event-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.event-carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll-events 30s linear infinite;
    width: fit-content;
}

.event-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-events {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.event-photo-item {
    flex-shrink: 0;
    width: 400px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.event-photo-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.3);
}

.event-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    /* Image optimization for performance */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.event-photo-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .event-carousel-track {
        gap: 15px;
        animation-duration: 20s;
    }

    .event-photo-item {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .lang-toggle {
        margin: 10px 0;
        width: 100%;
        justify-content: center;
    }

    .elegant-footer {
        padding: 40px 0 0;
    }

    .footer-bottom {
        text-align: center !important;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
}

/* Contact Section & Form Styles */
.contact-info-card,
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.contact-info-card:hover,
.contact-form-card:hover {
    border-color: rgba(88, 166, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-floating>.form-control {
    background: #0d1117 !important;
    border: 1px solid var(--border);
    color: #fff;
    height: 4rem !important;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>textarea.form-control {
    height: 150px !important;
}

.form-floating>.form-control:focus {
    background: #0d1117;
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(88, 166, 255, 0.25);
    color: #fff;
}

.form-floating>label {
    padding: 1rem 0.75rem !important;
    color: var(--text-muted);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--accent);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: #161b22;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--darker);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        right: 35px;
        bottom: 100px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Our Members / Subsidiaries Section */
.member-card {
    background: linear-gradient(180deg, rgba(22, 27, 34, 0.5) 0%, rgba(13, 17, 23, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-logo-wrapper {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.member-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), var(--primary), transparent);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.member-logo-wrapper img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(33, 38, 45, 0.8) 0%, rgba(13, 17, 23, 1) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.member-card:hover .member-logo-wrapper {
    background: #fff;
    transform: rotate(5deg) scale(1.1);
    border-color: transparent;
}

.member-card:hover .member-logo-wrapper::before {
    opacity: 0.5;
}

.member-card:hover .member-logo-wrapper img {
    filter: none;
}

.member-name {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.member-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(88, 166, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.member-card:hover::after {
    opacity: 1;
}

/* Digital Catalog Section */
.catalog-container {
    background: var(--card-bg);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    /* Default Outer Glow */
    box-shadow: 0 0 40px rgba(88, 166, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-container:hover {
    border-color: var(--accent);
    /* Extra Thick Outer Glow on Hover */
    box-shadow: 0 0 60px rgba(88, 166, 255, 0.35), 0 0 100px rgba(88, 166, 255, 0.1);
    transform: translateY(-5px);
}

.catalog-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.catalog-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.catalog-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .catalog-iframe-wrapper {
        padding-top: 140%;
        /* More vertical for mobile */
    }
}