:root{
    --shadow:0 8px 30px rgba(0,0,0,0.08);
    --transition:all .4s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--white);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}


/* ==================================
   HERO SECTION
================================== */

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;
}

/* Background */

.hero-background{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(255,255,255,.82),
        rgba(255,255,255,.82)
    ),
    url("../images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

    filter:blur(4px);

    transform:scale(1.08);

    z-index:-2;
}

/* Floating Glow */

.hero-section::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(37,167,222,.08);

    filter:blur(100px);

    top:-150px;
    right:-100px;
}

/* Layout */

.hero-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;
}

/* Left Content */

.hero-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(37,167,222,.12);

    color:rgb(37,167,222);

    font-weight:600;

    margin-bottom:25px;
}

.hero-content h1{

    font-size:5rem;

    line-height:1.05;

    color:#0f172a;

    margin-bottom:25px;
}

.hero-content p{

    max-width:600px;

    line-height:2;

    color:#555;

    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn{

    text-decoration:none;

    padding:18px 35px;

    border-radius:60px;

    background:
    linear-gradient(
        135deg,
        rgb(37,167,222),
        rgb(20,130,180)
    );

    color:#fff;

    font-weight:600;

    transition:.4s;
}

.primary-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 40px rgba(37,167,222,.30);
}

.secondary-btn{

    text-decoration:none;

    padding:18px 35px;

    border-radius:60px;

    background:#fff;

    border:2px solid rgba(37,167,222,.18);

    color:#111827;

    font-weight:600;

    transition:.4s;
}

.secondary-btn:hover{

    background:
    rgb(37,167,222);

    color:#fff;
}

/* ==================================
   PHOTO ALBUM
================================== */

.album-container{

    position:relative;

    height:700px;
}

.album-card{

    position:absolute;

    background:#fff;

    padding:10px;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:
    0 20px 60px rgba(0,0,0,.15);

    transition:.5s ease;

    animation:
    floatCard 6s ease-in-out infinite;
}

.album-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:18px;
}

.card1{

    width:280px;
    height:360px;

    top:0;
    left:40px;

    transform:rotate(-10deg);
}

.card2{

    width:260px;
    height:320px;

    top:40px;
    right:0;

    transform:rotate(8deg);

    animation-delay:1s;
}

.card3{

    width:330px;
    height:430px;

    top:180px;
    left:150px;

    z-index:5;
}

.card4{

    width:250px;
    height:300px;

    bottom:0;
    left:0;

    transform:rotate(-8deg);

    animation-delay:2s;
}

.card5{

    width:250px;
    height:300px;

    bottom:20px;
    right:20px;

    transform:rotate(10deg);

    animation-delay:3s;
}

.album-card:hover{

    transform:
    scale(1.06);

    z-index:50;
}

@keyframes floatCard{

    50%{

        transform:
        translateY(-15px);
    }
}

/* ==================================
   MODAL
================================== */

.image-modal{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.88);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:99999;
}

.image-modal.show{

    opacity:1;

    visibility:visible;
}

.modal-image{

    max-width:85%;

    max-height:85vh;

    border-radius:25px;
}

.close-modal{

    position:absolute;

    top:25px;
    right:35px;

    color:#fff;

    font-size:50px;

    cursor:pointer;
}

/* Responsive */

@media(max-width:992px){

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-content h1{

        font-size:3.5rem;
    }

    .album-container{

        height:600px;
    }
}
















/* ==========================================
   Social Initiatives Overview
========================================== */

.initiative-overview{
  background: linear-gradient(180deg,#F8F7F2 0%, #FCFCFA 100%);
  padding: 100px 0;
}

.initiative-wrapper{
  width:min(1180px,92%);
  margin:0 auto;
}

.initiative-header{
  text-align:center;
  margin-bottom:40px;
}

.initiative-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(37,167,222,0.08);
  color:var(--vf-blue);
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.initiative-header h2{
  margin:18px 0 14px;
  font-size:clamp(2rem,3vw,3.2rem);
  color:var(--vf-dark);
  font-weight:700;
}

.initiative-header p{
  max-width:760px;
  margin:0 auto;
  color:#5B6472;
  line-height:1.8;
  font-size:1rem;
}

/* Toggle */

.program-toggle{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border:1px solid rgba(255,255,255,0.8);
  box-shadow:0 18px 45px rgba(17,24,39,0.08);
  border-radius:999px;
  padding:8px;
  width:fit-content;
  margin:0 auto 34px;
}

.toggle-btn{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border:none;
  background:transparent;
  color:#4B5563;
  font-size:.95rem;
  font-weight:600;
  cursor:pointer;
  border-radius:999px;
  transition:color .35s ease, transform .25s ease;
}

.toggle-btn:hover{
  color:var(--vf-blue);
  transform:translateY(-1px);
}

.toggle-btn.active{
  color:#fff;
}

.toggle-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
  opacity:.85;
}

.toggle-indicator{
  position:absolute;
  top:8px;
  left:8px;
  width:calc(50% - 8px);
  height:calc(100% - 16px);
  border-radius:999px;
  background:linear-gradient(135deg,var(--vf-blue),#1E8EC2);
  box-shadow:0 12px 28px rgba(37,167,222,0.35);
  transition:transform .45s cubic-bezier(.22,1,.36,1);
}

.program-toggle[data-active="mission"] .toggle-indicator{
  transform:translateX(100%);
}

/* Card */

.program-card{
  position:relative;
  background:rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border:1px solid rgba(255,255,255,0.9);
  border-radius:28px;
  padding:34px;
  box-shadow:0 30px 70px rgba(17,24,39,0.10);
  overflow:hidden;
}

.program-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right,
      rgba(37,167,222,0.08),
      transparent 42%);
  pointer-events:none;
}

.program-panel{
  display:none;
  opacity:0;
  transform:translateY(12px);
}

.program-panel.active{
  display:block;
  animation:panelFade .5s cubic-bezier(.22,1,.36,1) forwards;
}

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

.panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:22px;
}

.panel-label{
  display:inline-block;
  margin-bottom:8px;
  color:var(--vf-blue);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.panel-head h3{
  font-size:2rem;
  color:var(--vf-dark);
  margin:0;
}

.panel-scroll{
  max-height:330px;
  overflow-y:auto;
  padding-right:14px;
  scroll-behavior:smooth;
}

.panel-scroll p{
  color:var(--vf-text);
  line-height:1.95;
  font-size:1rem;
  margin:0 0 18px;
}

/* Premium scrollbar */

.panel-scroll::-webkit-scrollbar{
  width:8px;
}

.panel-scroll::-webkit-scrollbar-track{
  background:#EEF2F5;
  border-radius:999px;
}

.panel-scroll::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,var(--vf-blue),#7CCBEA);
  border-radius:999px;
}

.panel-scroll{
  scrollbar-width:thin;
  scrollbar-color:var(--vf-blue) #EEF2F5;
}

/* Responsive */

@media (max-width:768px){

  .initiative-overview{
    padding:72px 0;
  }

  .program-toggle{
    width:100%;
    border-radius:22px;
    padding:8px;
  }

  .toggle-btn{
    flex:1;
    justify-content:center;
    padding:14px 16px;
    font-size:.88rem;
  }

  .toggle-indicator{
    width:calc(50% - 8px);
  }

  .program-card{
    padding:24px;
    border-radius:24px;
  }

  .panel-head h3{
    font-size:1.6rem;
  }

  .panel-scroll{
    max-height:300px;
  }
}

























/* ==========================================================
 VIDEO SHOWCASE
========================================================== */

/* =========================
   SECTION
========================= */

.media-showcase{
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background:
        radial-gradient(circle at top left,
            rgba(37,167,222,.08),
            transparent 32%),

        radial-gradient(circle at top right,
            rgba(201,221,185,.18),
            transparent 30%),

        radial-gradient(circle at bottom,
            rgba(37,167,222,.05),
            transparent 40%),

        var(--cream);
}

/* subtle luxury texture */

.media-showcase::before{
    content: '';
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(31,41,55,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,41,55,.03) 1px, transparent 1px);

    background-size: 34px 34px;
    opacity: .35;
    pointer-events: none;
}

.media-container{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.media-header{
    text-align: center;
    margin-bottom: 55px;
}

.media-tag{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.media-tag::before,
.media-tag::after{
    content: '';
    width: 72px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(37,167,222,.9),
        transparent
    );
}

.media-title{
    margin: 18px 0 14px;
    font-size: clamp(2.8rem,5vw,4.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.05;
}

.media-title span{
    color: var(--primary);
}

.media-subtitle{
    max-width: 640px;
    margin: 0 auto;

    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

/* =========================
   VIDEO GRID
========================= */

.video-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 28px;
}

/* =========================
   VIDEO CARD
========================= */

.video-card{
    position: relative;

    border-radius: 22px;
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(37,167,222,.75),
        rgba(201,221,185,.55),
        rgba(37,167,222,.18)
    );

    box-shadow:
        0 18px 38px rgba(31,41,55,.10),
        0 0 0 1px rgba(37,167,222,.10);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease;
}

.video-card::before{
    content: '';

    position: absolute;
    inset: -1px;

    border-radius: 22px;

    background: radial-gradient(
        circle at top,
        rgba(37,167,222,.22),
        transparent 60%
    );

    opacity: 0;
    transition: opacity .45s ease;
}

.video-card:hover{
    transform: translateY(-8px) scale(1.01);

    box-shadow:
        0 26px 54px rgba(31,41,55,.14),
        0 0 26px rgba(37,167,222,.18),
        0 0 0 1px rgba(37,167,222,.22);
}

.video-card:hover::before{
    opacity: 1;
}

.video-frame{
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    border-radius: 21px;
    overflow: hidden;

    background: #000;
}

.video-frame iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================
   WATCH MORE PORTAL
========================= */

.watch-more{
    margin-top: 44px;

    display: flex;
    align-items: center;
    gap: 28px;

    padding: 28px 30px;

    border-radius: 26px;

    text-decoration: none;
    color: inherit;

    background: linear-gradient(
        180deg,
        #FFFFFF,
        #F7F6F2
    );

    border: 1px solid rgba(37,167,222,.18);

    box-shadow:
        0 18px 38px rgba(31,41,55,.08),
        inset 0 1px 0 rgba(255,255,255,.95);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.watch-more:hover{
    transform: translateY(-5px);

    border-color: rgba(37,167,222,.38);

    box-shadow:
        0 28px 60px rgba(31,41,55,.12),
        0 0 28px rgba(37,167,222,.12),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* =========================
   ICON
========================= */

.watch-icon{
    width: 88px;
    height: 88px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    background: radial-gradient(
        circle at 30% 30%,
        rgba(37,167,222,.98),
        rgba(37,167,222,.72)
    );

    box-shadow:
        0 0 0 10px rgba(37,167,222,.10),
        0 0 30px rgba(37,167,222,.22);
}

.watch-icon svg{
    width: 34px;
    height: 34px;
}

/* =========================
   CONTENT
========================= */

.watch-content{
    flex: 1;
}

.watch-content h3{
    margin: 0 0 8px;

    color: var(--dark);
    font-size: 1.85rem;
    font-weight: 700;
}

.watch-content p{
    margin: 0;

    color: var(--muted);
    line-height: 1.7;
}

/* =========================
   DIVIDER
========================= */

.watch-divider{
    width: 1px;
    align-self: stretch;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(31,41,55,.12),
        transparent
    );
}

/* =========================
   BUTTON
========================= */

.watch-button{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 22px;

    border-radius: 999px;

    background: rgba(37,167,222,.08);
    border: 1px solid rgba(37,167,222,.35);

    color: var(--dark);
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.watch-button svg{
    width: 18px;
    height: 18px;
}

.watch-more:hover .watch-button{
    transform: translateX(4px);

    background: rgba(37,167,222,.16);
    border-color: rgba(37,167,222,.55);

    box-shadow:
        0 0 18px rgba(37,167,222,.16);
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal{
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
}

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

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){

    .video-grid{
        grid-template-columns: 1fr;
    }

    .watch-more{
        flex-direction: column;
        align-items: flex-start;
    }

    .watch-divider{
        width: 100%;
        height: 1px;
    }

    .watch-button{
        width: 100%;
        justify-content: center;
    }

    .watch-content h3{
        font-size: 1.6rem;
    }
}
























/* ================= NAVBAR AND FOOTER ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    background: var(--cream);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.04);
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--sky);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    transition: all 0.3s ease;
}

/* Hover Glow */
.nav-links a:hover {
    color: var(--sky);
    text-shadow:
        0 0 8px rgba(37,167,222,0.55),
        0 0 16px rgba(37,167,222,0.45),
        0 0 28px rgba(37,167,222,0.35);
    transform: translateY(-1px);
}

/* Active Link */
.nav-links a.active {
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2.5px;
    background: var(--sky);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(37,167,222,0.35);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--sky);
    border-radius: 10px;
    transition: 0.3s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        right: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 16px 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links.open {
        max-height: 420px;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}




.footer{
    font-family: 'Poppins', sans-serif;
    position: relative;
    background: linear-gradient(180deg, #1F2937 0%, #111827 55%, #0B1220 100%);
    color: var(--text);
    overflow: hidden;
    padding-top: 80px;
    border-top: 1px solid rgba(37,167,222,0.15);
}

/* Subtle background glow */

.footer::before{
    content: "";
    position: absolute;
    top: -140px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(37,167,222,0.18) 0%, rgba(37,167,222,0) 70%);
    pointer-events: none;
}

.footer::after{
    content: "";
    position: absolute;
    right: -140px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,167,222,0.12) 0%, rgba(37,167,222,0) 72%);
    pointer-events: none;
}

/* ================= CONTAINER ================= */

.footer-container{
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

/* ================= BRAND ================= */

.footer-brand{
    padding-right: 10px;
}

.footer-logo{
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    text-decoration: none;
}

.footer-logo img{
    height: 62px;
    width: auto;
    filter: drop-shadow(0 6px 18px rgba(37,167,222,0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.footer-logo:hover img{
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 10px 26px rgba(37,167,222,0.32));
}

.footer-brand p{
    color: #C7CED8;
    font-size: 15px;
    line-height: 1.9;
    max-width: 380px;
    letter-spacing: 0.2px;
}

/* ================= COLUMNS ================= */

.footer-column h3{
    position: relative;
    color: var(--cream);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}

.footer-column h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 54px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sky), rgba(37,167,222,0.18));
    box-shadow: 0 0 14px rgba(37,167,222,0.28);
}

.footer-column ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li{
    margin-bottom: 14px;
}

.footer-column a{
    position: relative;
    color: #C7CED8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.28s ease, transform 0.28s ease;
}

/* underline animation base */

.footer-column a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1.5px;
    background: var(--sky);
    transition: width 0.3s ease;
}

/* ================= CONTACT ================= */

.footer-contact .contact-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact .contact-item i{
    color: var(--sky);
    font-size: 16px;
    margin-top: 3px;
    width: 18px;
}

.footer-contact .contact-item span{
    color: #C7CED8;
    font-size: 15px;
    line-height: 1.7;
}

/* ================= QUICK LINKS HOVER ================= */

.footer-column a:hover{
    color: var(--cream);
    transform: translateX(6px);
    text-shadow: 0 0 12px rgba(37,167,222,0.22);
}

.footer-column a:hover::after{
    width: 100%;
}

/* ================= SOCIAL ICONS ================= */

.footer-social{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.footer-social a{
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(248,245,239,0.08);
    border: 1px solid rgba(37,167,222,0.16);
    color: var(--cream);
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease,
        border-color 0.45s ease;
}

/* Soft glow ring */

.footer-social a::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(37,167,222,0.0),
        rgba(37,167,222,0.55),
        rgba(37,167,222,0.0)
    );
    animation: ringRotate 8s linear infinite;
    opacity: 0.9;
}

/* Inner circle */

.footer-social a::after{
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #111827;
}

/* Icon */

.footer-social a i{
    position: relative;
    z-index: 2;
    font-size: 18px;
    animation: iconRotate 14s linear infinite;
    transition: transform 0.45s ease, color 0.45s ease;
}

/* Hover */

.footer-social a:hover{
    transform: translateY(-6px) scale(1.08);
    background: rgba(37,167,222,0.18);
    border-color: rgba(37,167,222,0.5);
    box-shadow:
        0 0 16px rgba(37,167,222,0.32),
        0 12px 28px rgba(0,0,0,0.28);
}

.footer-social a:hover i{
    color: #ffffff;
    transform: rotateY(180deg) scale(1.12);
}

/* ================= ANIMATIONS ================= */

@keyframes ringRotate{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}

@keyframes iconRotate{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}

/* ================= BOTTOM BAR ================= */

.footer-bottom{
    width: 90%;
    max-width: 1280px;
    margin: 54px auto 0;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    position: relative;
    z-index: 2;
}

.footer-bottom p{
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.2px;
}

.footer-bottom-links{
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-bottom-links a{
    position: relative;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.28s ease;
}

.footer-bottom-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1.5px;
    background: var(--sky);
    transition: width 0.28s ease;
}

.footer-bottom-links a:hover{
    color: var(--cream);
}

.footer-bottom-links a:hover::after{
    width: 100%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px){

    .footer-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand{
        padding-right: 0;
    }

    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px){

    .footer{
        padding-top: 64px;
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-logo img{
        height: 56px;
    }

    .footer-social{
        gap: 12px;
    }

    .footer-social a{
        width: 48px;
        height: 48px;
    }

    .footer-bottom{
        align-items: flex-start;
    }

    .footer-bottom-links{
        flex-wrap: wrap;
        gap: 16px;
    }
}