:root {
    /* --- PALETTE OCEAN MIMAL --- */
    --ocean-blue: #003366;
    --ocean-dark: #001a33;
    --pure-white: #ffffff;
    --off-white: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;

    /* --- LIQUID GLASS --- */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    --blur: 20px;

    /* --- SHAPES --- */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-pill: 100px;

    /* --- TYPOGRAPHY --- */
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    background-color: var(--pure-white);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- CUSTOM SCROLLBAR --- */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--ocean-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-dark);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--ocean-blue) var(--off-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--off-white);
}

/* --- TYPOGRAPHY UTIL --- */


.eyebrow-dark {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ocean-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.main-title {
    font-size: 3.2rem;
    /* Reduced from 4rem */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.title-lg {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.title-md {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--ocean-blue);
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 500px;
    line-height: 1.5;
}

.subtitle-sm {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.text-body {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* --- BUTTONS --- */
.btn-primary-sm {
    background: var(--ocean-blue);
    color: var(--pure-white);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s var(--ease-out);
}

.btn-primary-sm:hover {
    transform: scale(1.05);
}

.btn-white {
    background: var(--pure-white);
    color: var(--ocean-blue);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 16px;
    transition: all 0.3s var(--ease-out);
}

.btn-white:hover,
.btn-white:active {
    background-color: #25D366;
    /* WhatsApp Green */
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
    border-color: #25D366;
}

/* --- HEADER FLOATING ISLAND --- */
.header-island {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.glass-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 100px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s var(--ease-out);
}

.glass-nav:hover {
    background: rgba(255, 255, 255, 0.9);
}

.logo-image {
    display: flex;
    align-items: center;
}

.logo-image img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 1;
}

.hamburger {
    display: none;
}

/* --- HERO IMMERSIVE --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg picture {
    height: 100%;
    width: 100%;
    display: block;
}

.hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    padding-bottom: 40px;
}

.glass-blur-card {
    background: rgba(0, 51, 102, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    /* Full width */
    max-width: none;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);

    /* Horizontal Layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text-group {
    max-width: 600px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;

    /* Glossy Liquid Metal Effect */
    color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(to right,
            #999999 0%,
            #ffffff 45%,
            #ffffff 55%,
            #999999 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.stat-val small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- BENTO GRID --- */
.section-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.desc-sm {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(0, 51, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0);
    }
}

.btn-gallery-view {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ocean-blue);
    background: rgba(0, 51, 102, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    animation: subtlePulse 3s infinite ease-in-out;
}

.btn-gallery-view:hover {
    background: var(--ocean-blue);
    color: var(--pure-white);
    animation: none;
    transform: translateY(-1px);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-item {
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out);
}

.bento-item:hover {
    transform: scale(0.98);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Fix: if needed */

.bento-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
}

.tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    color: var(--ocean-blue);
}

.bento-content h3 {
    color: var(--pure-white);
    font-size: 1.25rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* --- ABOUT --- */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.profile-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* overflow: hidden; Removed to allow ring outside */
    position: relative;
    /* For ring positioning */
    background: #f0f0f5;
    /* Light grey background for logos */
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Circulating Ring */
.profile-avatar-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    /* Ring sits outside the avatar */
    border-radius: 50%;
    border: 1px solid rgba(0, 51, 102, 0.05);
    /* Very subtle track */
    border-top: 1px solid var(--ocean-blue);
    border-right: 1px solid rgba(0, 51, 102, 0.3);
    animation: spin-ring 8s linear infinite;
    /* Slow and elegant */
    pointer-events: none;
}

@keyframes spin-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* Ensure image is clipped to circle */
}

.builder-logo-adjust {
    object-fit: contain;
    width: 70%;
    /* Give logo a bit of breathing room */
    height: 70%;
}

.margin-fix {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.eyebrow-dark {
    margin-bottom: 4px;
}

.btn-soft {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background-color: #e6e6eb;
    /* Slightly darker than off-white for contrast */
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.btn-soft:hover {
    background-color: var(--ocean-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

/* --- PLAN SECTION --- */
.container-plan {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.spec-card {
    background: var(--pure-white);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
}

.spec-card:active {
    transform: scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-card i {
    color: var(--ocean-blue);
    font-size: 1.2rem;
}

.spec-card span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 4px;
}

.plan-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--pure-white);
    padding: 24px;
    box-shadow: var(--glass-shadow);
}

.plan-visual img {
    border-radius: var(--radius-sm);
}

/* --- ANIMATED FEATURES BUTTON --- */
.btn-features-anim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ocean-blue);
    background: rgba(0, 51, 102, 0.05);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--ocean-blue);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 51, 102, 0.1);
}

/* The 'passing' shine effect */
.btn-features-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transition: none;
    animation: shine-pass 3s infinite;
}

.btn-features-anim:hover {
    background: var(--ocean-blue);
    color: var(--pure-white);
    transform: translateX(5px);
}

/* --- VIDEO SECTION --- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.video-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ocean-blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes shine-pass {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }

    /* Long pause relative to movement speed */
}

/* --- FOOTER CARD --- */
.liquid-blue {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    border-radius: 40px;
    /* Big Apple Card radius */
    padding: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.title-white {
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 16px;
    font-weight: 600;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.btn-white {
    background: var(--pure-white);
    color: var(--ocean-blue);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 0;
    /* Reset margin since we use gap */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--ease-out);
}

.input-group input {
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.footer-bottom {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.socials a {
    margin-left: 20px;
    transition: color 0.2s;
}

.socials a:hover {
    color: var(--pure-white);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .item-large,
    .item-medium,
    .item-tall,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .container-plan,
    .layout-split,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-island {
        top: 16px;
        padding: 0 16px;
    }

    .glass-nav {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
    }

    /* Hide hamburger on mobile */
    .hamburger {
        display: none;
    }

    .main-title {
        font-size: 2.2rem;
        text-align: center;
    }

    /* Center hero content */
    .hero-text-group {
        text-align: center;
    }

    .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    /* Make the card smaller on mobile to show background */
    .glass-blur-card {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 30px;
        margin: 0 16px;
        max-width: 100%;
    }

    .liquid-blue {
        padding: 40px 24px;
        border-radius: 24px;
    }

    /* Center video titles */
    .video-title {
        text-align: center;
    }

    /* Center footer logo on mobile */
    .footer-main {
        text-align: center;
    }

    .footer-logo-column {
        justify-content: center;
        align-items: center;
    }
}

/* --- CUSTOM 3D CAROUSEL --- */
/* Compact Section padding override */
#gallery {
    padding: 40px 0;
}

#gallery .section-header {
    margin-bottom: 20px;
}

.gallery-3d-container {
    perspective: 2000px;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.card-3d {
    width: 200px;
    height: 112px;
    /* 16:9 Aspect Ratio Reduced */
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-5deg);
    animation: autoRun3d 30s linear infinite;
    z-index: 10;
}

/* Pause animation on hover */
.card-3d:hover {
    animation-play-state: paused;
}

.card-3d div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.2));
    /* Initial state */
    filter: brightness(0.8);
    transition: filter 0.3s;
}

.card-3d div:hover {
    filter: brightness(1.2);
    /* Highlight on hover */
}

/* Layout the 10 images in a circle */
/* Angle step = 360 / 10 = 36deg */
/* Reduced size = smaller radius needed */
/* New Radius (approx) = 400px */

.card-3d div:nth-child(1) {
    transform: rotateY(0deg) translateZ(350px);
}

.card-3d div:nth-child(2) {
    transform: rotateY(36deg) translateZ(350px);
}

.card-3d div:nth-child(3) {
    transform: rotateY(72deg) translateZ(350px);
}

.card-3d div:nth-child(4) {
    transform: rotateY(108deg) translateZ(350px);
}

.card-3d div:nth-child(5) {
    transform: rotateY(144deg) translateZ(350px);
}

.card-3d div:nth-child(6) {
    transform: rotateY(180deg) translateZ(350px);
}

.card-3d div:nth-child(7) {
    transform: rotateY(216deg) translateZ(350px);
}

.card-3d div:nth-child(8) {
    transform: rotateY(252deg) translateZ(350px);
}

.card-3d div:nth-child(9) {
    transform: rotateY(288deg) translateZ(350px);
}

.card-3d div:nth-child(10) {
    transform: rotateY(324deg) translateZ(350px);
}


/* Keyframes */
@keyframes autoRun3d {
    from {
        transform: perspective(1000px) rotateX(-10deg) rotateY(0deg);
    }

    to {
        transform: perspective(1000px) rotateX(-10deg) rotateY(360deg);
    }
}

/* Optional: Brightness animation if requested */
@keyframes animateBrightness {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(0.5);
    }
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-3d-container {
        padding: 20px 0;
        perspective: 800px;
    }

    .card-3d {
        width: 130px;
        height: 73px;
        /* 16:9 Mobile */
    }

    /* Mobile Radius approx 230px */
    .card-3d div:nth-child(1) {
        transform: rotateY(0deg) translateZ(230px);
    }

    .card-3d div:nth-child(2) {
        transform: rotateY(36deg) translateZ(230px);
    }

    .card-3d div:nth-child(3) {
        transform: rotateY(72deg) translateZ(230px);
    }

    .card-3d div:nth-child(4) {
        transform: rotateY(108deg) translateZ(230px);
    }

    .card-3d div:nth-child(5) {
        transform: rotateY(144deg) translateZ(230px);
    }

    .card-3d div:nth-child(6) {
        transform: rotateY(180deg) translateZ(230px);
    }

    .card-3d div:nth-child(7) {
        transform: rotateY(216deg) translateZ(230px);
    }

    .card-3d div:nth-child(8) {
        transform: rotateY(252deg) translateZ(230px);
    }

    .card-3d div:nth-child(9) {
        transform: rotateY(288deg) translateZ(230px);
    }

    .card-3d div:nth-child(10) {
        transform: rotateY(324deg) translateZ(230px);
    }
}

/* --- AWARD BADGE ANIMATION --- */
.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 14px;
    background: rgba(0, 51, 102, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.award-badge>* {
    position: relative;
    z-index: 1;
}

.award-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 215, 0, 0.6),
            #fff,
            rgba(255, 215, 0, 0.6),
            transparent);
    transform: skewX(-20deg);
    animation: gold-pass 3s linear infinite;
}

@keyframes gold-pass {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* --- NEW FOOTER STYLES --- */
.new-footer {
    background-color: var(--ocean-dark);
    color: var(--pure-white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-column {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-align: center;
}

.footer-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out);
    text-align: left;
}

.footer-social-btn:hover {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.3);
}

.footer-social-btn i {
    font-size: 1.2rem;
}

.footer-location-column {
    text-align: center;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer-address i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 8px;
}

.address-indent {
    display: inline-block;
    margin-left: 24px;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-credits {
    text-align: center;
    padding-bottom: 10px;
}

.footer-credits p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.fastfilms-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fastfilms-link:hover {
    color: #ff0000;
}

/* Responsive Design for New Footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo-column {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        max-width: 150px;
        margin: 0 auto;
    }

    .footer-location-column {
        text-align: center;
    }

    .footer-social-buttons {
        align-items: center;
    }

    .footer-social-btn {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
}