/* ==========================================
   PACTA Globe - Premium Home Styles
========================================== */

:root {
    --navy: #071a3d;
    --navy-2: #0d2d67;
    --gold: #d4af37;
    --gold-dark: #b99017;
    --background: #f5f8fc;
    --text: #495057;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    --radius: 18px;
}

/* ==========================================
   RESET AND GLOBAL STYLES
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

section {
    padding: 90px 0;
}

/* ==========================================
   NAVIGATION BAR
========================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(7, 26, 61, 0.95) !important;
    backdrop-filter: blur(14px);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.navbar-brand h4 {
    color: var(--white);
    font-weight: 700;
}

.navbar-brand small {
    color: var(--gold);
}

.nav-link {
    color: var(--white) !important;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.btn-warning {
    background: var(--gold);
    border: none;
    color: var(--navy);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: var(--gold-dark);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--gold);
    color: var(--navy);
}
/* ==========================================
   PREMIUM HERO SECTION
========================================== */

.premium-hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(212, 175, 55, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );
}

.premium-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 61, 0.15),
            transparent
        );
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    max-width: 650px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title span {
    display: block;
    color: var(--gold);
}

.hero-description {
    max-width: 570px;
    margin-bottom: 34px;
    color: #dbe5f7;
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 38px;
}

.hero-primary-btn,
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-primary-btn {
    color: var(--navy);
    background: var(--gold);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.hero-primary-btn:hover {
    color: var(--navy);
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.hero-secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.hero-secondary-btn:hover {
    color: var(--navy);
    background: #ffffff;
    transform: translateY(-3px);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 170px;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
}

.hero-trust-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.14);
}

.hero-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.84rem;
}

.hero-trust-item span {
    display: block;
    margin-top: 2px;
    color: #c9d5eb;
    font-size: 0.7rem;
}

/* ==========================================
   SHARED PREMIUM CARDS
========================================== */

.stats-card,
.service-card,
.testimonial-card,
.why-feature {
    height: 100%;
    padding: 35px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.stats-card:hover,
.service-card:hover,
.testimonial-card:hover,
.why-feature:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

/* ==========================================
   CSS-ONLY HERO VISUAL
========================================== */

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.24),
        rgba(13, 45, 103, 0.08) 45%,
        transparent 70%
    );
    filter: blur(8px);
    z-index: -3;
}

.hero-globe {
    position: relative;
    width: 290px;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 255, 255, 0.22),
            transparent 25%
        ),
        radial-gradient(
            circle,
            rgba(18, 67, 145, 0.95),
            rgba(5, 25, 62, 0.98)
        );
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.2),
        inset 0 0 55px rgba(255, 255, 255, 0.08);
    animation: globeFloat 6s ease-in-out infinite;
}

.hero-globe > i {
    font-size: 9rem;
    opacity: 0.82;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.35));
}

.globe-line {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.globe-line-one {
    transform: rotate(28deg) scaleX(0.52);
}

.globe-line-two {
    transform: rotate(-28deg) scaleX(0.52);
}

.globe-line-three {
    transform: scaleY(0.5);
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: orbitSpin 18s linear infinite;
}

.orbit-one {
    width: 390px;
    height: 390px;
}

.orbit-two {
    width: 480px;
    height: 260px;
    transform: rotate(18deg);
    animation-duration: 23s;
}

.orbit-three {
    width: 330px;
    height: 500px;
    transform: rotate(-30deg);
    animation-duration: 28s;
}

.floating-bank-card {
    position: absolute;
    width: 245px;
    min-height: 145px;
    padding: 20px;
    border-radius: 20px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.04)
        );
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
    z-index: 3;
}

.card-one {
    top: 42px;
    right: 2px;
    transform: rotate(7deg);
    animation: cardFloatOne 5.5s ease-in-out infinite;
}

.card-two {
    left: 0;
    bottom: 38px;
    transform: rotate(-8deg);
    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.3),
            rgba(7, 26, 61, 0.72)
        );
    animation: cardFloatTwo 6s ease-in-out infinite;
}

.bank-card-top,
.bank-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-card-top {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.bank-card-chip {
    width: 42px;
    height: 31px;
    margin: 22px 0 18px;
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            #f8df86,
            #b88a13
        );
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.bank-card-number {
    font-size: 0.95rem;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
}

.bank-card-bottom {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.8px;
}

.floating-currency {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.32);
    animation: currencyFloat 4.5s ease-in-out infinite;
}

.currency-dollar {
    left: 20px;
    top: 96px;
}

.currency-euro {
    right: 38px;
    bottom: 108px;
    animation-delay: 0.8s;
}

.currency-pound {
    right: 70px;
    top: 190px;
    animation-delay: 1.4s;
}

@keyframes globeFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes cardFloatOne {
    0%,
    100% {
        transform: translateY(0) rotate(7deg);
    }

    50% {
        transform: translateY(-14px) rotate(5deg);
    }
}

@keyframes cardFloatTwo {
    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(13px) rotate(-5deg);
    }
}

@keyframes currencyFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 991px) {
    .hero-visual {
        min-height: 520px;
        max-width: 620px;
        margin: 30px auto 0;
    }
}

@media (max-width: 576px) {
    .hero-visual {
        min-height: 430px;
        transform: scale(0.88);
        margin-top: 0;
    }

    .hero-globe {
        width: 230px;
        height: 230px;
    }

    .hero-globe > i {
        font-size: 7rem;
    }

    .orbit-one {
        width: 300px;
        height: 300px;
    }

    .orbit-two {
        width: 370px;
        height: 210px;
    }

    .orbit-three {
        width: 270px;
        height: 390px;
    }

    .floating-bank-card {
        width: 205px;
        min-height: 125px;
        padding: 16px;
    }

    .card-one {
        right: -25px;
    }

    .card-two {
        left: -28px;
    }

    .bank-card-chip {
        margin: 16px 0 13px;
    }
}
/* ==========================================
   STATISTICS SECTION
========================================== */

.stats-card {
    text-align: center;
}

.stats-card i {
    font-size: 3rem;
    color: var(--gold);
}

.stats-card h2 {
    margin-top: 18px;
    color: var(--navy);
    font-weight: 700;
}

.stats-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* ==========================================
   SERVICES SECTION
========================================== */

.service-card {
    text-align: center;
}

.service-card i {
    display: inline-block;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.service-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-feature i {
    display: inline-block;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-feature h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
}

.why-feature p {
    color: #6c757d;
    margin-bottom: 0;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonial-card {
    text-align: center;
}

/* ==========================================
   FOOTER
========================================== */

footer {
    background: var(--navy);
    color: var(--white);
    padding: 70px 0;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

/* ==========================================
   TABLET RESPONSIVE STYLES
========================================== */

@media (max-width: 991px) {
    section {
        padding: 70px 0;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 20px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 8px;
    }

    .nav-link {
        display: inline-block;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust-row {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }
}

/* ==========================================
   MOBILE RESPONSIVE STYLES
========================================== */

@media (max-width: 576px) {
    section {
        padding: 55px 0;
    }

    .navbar-brand img {
        width: 46px;
        height: 46px;
    }

    .navbar-brand h4 {
        font-size: 1.15rem;
    }

    .navbar-brand small {
        font-size: 0.7rem;
    }

    .premium-hero {
        min-height: auto;
        padding: 65px 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 9px 14px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust-item {
        width: 100%;
        text-align: left;
    }

    .stats-card,
    .service-card,
    .testimonial-card,
    .why-feature {
        padding: 28px;
    }
}
/* ==========================================
   PREMIUM STATISTICS SECTION
========================================== */

.statistics-section {
    position: relative;
    background: var(--background);
}

.statistics-intro {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    padding: 9px 16px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.13);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.section-title {
    color: var(--navy);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-description {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.premium-stat-card {
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(7, 26, 61, 0.07);
}

.premium-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-dark)
    );
}

.premium-stat-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold);
}

.stat-icon i {
    font-size: 2rem;
}

.premium-stat-card h2 {
    position: relative;
    z-index: 1;
    color: var(--navy);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.premium-stat-card p {
    position: relative;
    z-index: 1;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-detail {
    position: relative;
    z-index: 1;
    color: #7a8494;
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .statistics-intro {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 2rem;
    }

    .premium-stat-card {
        text-align: center;
    }

    .stat-icon {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ==========================================
   SERVICES SECTION
========================================== */

.services-section {
    background: #ffffff;
}

.services-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

.premium-service {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 26, 61, 0.08);
}

.premium-service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--gold), var(--gold-dark));
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 2rem;
}

.premium-service h4 {
    margin-bottom: 14px;
}

.premium-service p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    transition: 0.3s;
}

.service-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

@media (max-width: 767px) {
    .services-header {
        margin-bottom: 40px;
    }

    .premium-service {
        text-align: center;
    }

    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ==========================================
   WHY CHOOSE US
========================================== */

.why-section {
    background: #f8fbff;
}

.why-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.why-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.why-image:hover {
    transform: scale(1.03);
}

.why-feature {
    position: relative;
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(7, 26, 61, 0.08);
}

.why-feature i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 2rem;
}

.why-feature h5 {
    margin-bottom: 12px;
}

.why-feature p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .why-image-wrapper {
        margin-bottom: 20px;
    }
}
/* ==========================================
   PREMIUM TESTIMONIALS
========================================== */

.testimonials-section {
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(7, 26, 61, 0.98),
            rgba(13, 45, 103, 0.96)
        );
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    filter: blur(10px);
}

.testimonials-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    max-width: 760px;
    margin: 0 auto 55px;
}

.testimonials-section .section-title {
    color: #ffffff;
}

.testimonials-section .section-description {
    color: #d7e2f7;
}

.testimonials-section .section-badge {
    color: #f1d679;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.24);
}

.premium-testimonial {
    position: relative;
    text-align: left;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.premium-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-dark)
    );
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--navy-2)
    );
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 24px rgba(7, 26, 61, 0.2);
}

.customer-info h5 {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.customer-info span {
    color: #7a8494;
    font-size: 0.85rem;
}

.customer-info span i {
    color: var(--gold-dark);
    margin-right: 4px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: var(--gold);
    margin-bottom: 18px;
}

.testimonial-rating i {
    font-size: 0.95rem;
}

.testimonial-quote-icon {
    position: absolute;
    top: 70px;
    right: 25px;
    color: rgba(212, 175, 55, 0.16);
}

.testimonial-quote-icon i {
    font-size: 4.5rem;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: #596273;
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .testimonials-header {
        margin-bottom: 40px;
    }

    .premium-testimonial {
        text-align: left;
    }
}
/* ==========================================
   PREMIUM FOOTER
========================================== */

.footer-section {
    background: linear-gradient(135deg, var(--navy), #04132d);
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-logo {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-text {
    color: #d6e1f5;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-section h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d6e1f5;
    text-decoration: none;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: .3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-divider {
    margin: 45px 0 25px;
    border-color: rgba(255,255,255,.15);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #d6e1f5;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom span {
    margin: 0 10px;
    color: rgba(255,255,255,.35);
}

@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

}