:root {
    /* Semantic Colors */
    --bgColor: #FFFFFF;
    --surfaceColor: #F1F5F9;
    --textColor: var(--secondaryColor);
    --textMuted: #64748B;
    --primaryColorH: var(--primaryColor);
    /* Fallback to primary if H not provided */
    /* primaryColor and secondaryColor are provided by the system */

    /* UI Architecture */
    --summit-radius: 0px;
    /* Sharp corners for architectural feel */
    --summit-border: 1px solid rgba(0, 0, 0, 0.1);
    --summit-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);

    /* Spacing */
    --section-padding: 120px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bgColor);
    color: var(--textColor);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    /* Hide Scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondaryColor);
    margin-top: 0;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

/* Layout Components */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1600px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Buttons */
.btn-summit {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--secondaryColor);
    color: #FFFFFF;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--secondaryColor);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-summit:hover {
    background: transparent;
    color: var(--secondaryColor);
    transform: translateY(-2px);
}

.btn-summit-border {
    background: transparent;
    color: var(--secondaryColor);
    border: 1px solid var(--secondaryColor);
}

.btn-summit-border:hover {
    background: var(--secondaryColor);
    color: #FFFFFF;
}

/* Section Header System */
.section-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: var(--primaryColor);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--primaryColor);
    margin-top: 30px;
}

.section-header.center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--textMuted);
    line-height: 1.8;
}

/* Header & Navigation */
/* --- Premium Editorial Header & Navigation --- */
/* Architectural Topbar */
.summit-topbar {
    height: 32px;
    background: var(--secondaryColor);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-scrolled .summit-topbar {
    transform: translateY(-100%);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    /* Fixed height for perfect centering */
}

.topbar-left {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1;
    /* Reset line-height */
}

.contact-item i {
    color: var(--primaryColor);
    font-size: 14px;
}

.contact-item a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFFFFF;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.topbar-socials .social-media-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.topbar-socials .social-media-links a:hover {
    color: var(--primaryColor);
    transform: translateY(-2px);
}

/* Header & Navigation */
.summit-main-header {
    height: 90px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 32px;
    /* Height of topbar */
    left: 0;
    width: 100%;
    z-index: 1600;
    /* Ensure it stays above overlay */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-active .summit-main-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-active .header-logo img {
    filter: brightness(0) invert(1);
}

.summit-main-header.scrolled {
    top: 0;
    height: 75px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.header-logo img {
    height: 35px;
    width: auto;
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}



/* Compensate for dual header on body */
body {
    padding-top: 122px;
    /* topbar (32px) + header (90px) */
}

.header-actions {
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 30px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondaryColor);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-active .hamburger span {
    background: #FFFFFF;
}

.hamburger .line-2 {
    width: 65%;
    align-self: flex-end;
}

.menu-toggle.active .hamburger .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .hamburger .line-2 {
    width: 100%;
    transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle:hover .hamburger .line-2 {
    width: 100%;
}

/* Fullscreen Editorial Overlay */
.summit-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondaryColor);
    z-index: 1500;
    /* Below header */
    visibility: hidden;
    clip-path: circle(0% at calc(100% - 60px) 75px);
    transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 1s linear;
    display: flex;
    flex-direction: column;
    padding-top: 122px;
}

.summit-mobile-overlay.active {
    visibility: visible;
    clip-path: circle(150% at calc(100% - 60px) 75px);
}

.overlay-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    font-family: 'Cinzel', serif;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.summit-mobile-overlay.active .overlay-background-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.overlay-body {
    flex: 1;
    position: relative;
    z-index: 5;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-item {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(60px) rotate(2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--index) * 0.08s + 0.4s);
}

.summit-mobile-overlay.active .mobile-item {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.mobile-item a {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.item-number {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--primaryColor);
}

.item-text {
    font-family: 'Cinzel', serif;
    font-size: 5vw;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 768px) {
    .item-text {
        font-size: 40px;
    }
}

.mobile-item a:hover {
    padding-left: 20px;
    color: var(--primaryColor);
}

.overlay-info {
    padding-left: 60px;
}

.info-group {
    margin-bottom: 40px;
}

.info-group h5 {
    color: var(--primaryColor);
    font-size: 11px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.info-group p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0;
}

.overlay-footer {
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.overlay-footer span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

/* Hero Slider */
.summit-hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    background: var(--secondaryColor);
}

.summitHeroSwiper {
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.swiper-slide-active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--secondaryColor) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    color: #FFFFFF;
}

.summit-hero .hero-tag {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primaryColor);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.summit-hero .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    color: #FFFFFF;
}

.summit-hero .hero-actions {
    opacity: 0;
    transform: translateY(20px);
}

.swiper-slide-active .hero-tag,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-tag {
    transition-delay: 0.3s;
}

.swiper-slide-active .hero-title {
    transition-delay: 0.5s;
}

.swiper-slide-active .hero-actions {
    transition-delay: 0.7s;
}

.summit-hero-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 40px !important;
    width: auto !important;
    z-index: 10;
}

.summit-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.summit-hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--primaryColor);
}

.summit-hero-navigation {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.summit-hero-navigation button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.summit-hero-navigation button:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--secondaryColor);
}

/* Page Header & Breadcrumb */
.summit-page-header {
    background: var(--surfaceColor);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.summit-page-header.has-bg {
    padding: 160px 0 100px;
    background: var(--secondaryColor);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--secondaryColor) 0%, transparent 100%);
}

.summit-page-header .header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.summit-page-header.has-bg .page-title {
    color: #FFFFFF;
}

.summit-page-header .page-title {
    font-size: 48px;
    margin: 0;
}

.summit-header-anchor .section-tag {
    margin-bottom: 20px;
}

.summit-breadcrumb {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.breadcrumb-item {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.breadcrumb-item a {
    color: var(--textMuted);
}

.breadcrumb-item.active {
    color: var(--primaryColor);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: #E2E8F0;
}

/* Stats / Counters */
.summit-stats {
    background: var(--surfaceColor);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .stat-item::after {
        display: none;
    }
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--secondaryColor);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-value .prefix {
    font-size: 0.6em;
    color: var(--primaryColor);
    vertical-align: super;
}

.stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--textMuted);
    margin: 0;
}

/* Home Sections */
.about-image-stack {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-rich-content {
    color: var(--textMuted);
    line-height: 1.8;
}

.about-rich-content p {
    margin-bottom: 20px;
}

.about-rich-content h1,
.about-rich-content h2,
.about-rich-content h3 {
    color: var(--secondaryColor);
    margin: 30px 0 20px;
    font-size: 2rem;
    line-height: 1.2;
}

.services-dynamic-grid {
    display: flex;
    flex-wrap: wrap;
}

.dynamic-col {
    flex: 1 1 30%;
    /* Default to roughly 3 columns */
    min-width: 320px;
    /* Minimum width before wrapping */
    max-width: 100%;
}

@media (max-width: 991px) {
    .dynamic-col {
        flex: 1 1 45%;
        /* 2 columns on medium screens */
    }
}

@media (max-width: 575px) {
    .dynamic-col {
        flex: 1 1 100%;
        /* 1 column on small screens */
    }
}

.summit-service-card {
    display: block;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.summit-service-card .card-image {
    height: 100%;
}

.summit-service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.summit-service-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, var(--secondaryColor) 0%, transparent 100%);
    color: #FFFFFF;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.summit-service-card:hover .card-info {
    transform: translateY(0);
}

.summit-service-card:hover .card-image img {
    transform: scale(1.1);
}

.summit-service-card .card-title {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 10px;
}

.summit-service-card .card-link {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primaryColor);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.summit-service-card:hover .card-link {
    opacity: 1;
}

.vision-box {
    background: var(--secondaryColor);
    overflow: hidden;
}

.vision-content {
    padding: 80px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.quote-icon {
    font-size: 60px;
    color: var(--primaryColor);
    margin-bottom: 40px;
    opacity: 0.3;
}

.vision-title {
    color: #FFFFFF;
    font-size: 32px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    margin-bottom: 30px;
}

.vision-author {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primaryColor);
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summit-project-item .project-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.summit-project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.summit-project-item:hover img {
    transform: scale(1.05);
}

.summit-project-item .p-title {
    font-size: 18px;
}

.summit-project-item .p-link {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primaryColor);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .vision-content {
        padding: 40px;
    }
}

/* Page Specific Styles */
.summit-about-gallery {
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.about-rich-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.summit-value-card {
    background: #FFFFFF;
    padding: 40px;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.summit-value-card:hover {
    border-color: var(--primaryColor);
    transform: translateY(-5px);
}

.summit-value-card .val-icon {
    font-size: 32px;
    color: var(--primaryColor);
    margin-bottom: 25px;
}

.summit-value-card .val-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.summit-value-card .val-desc {
    font-size: 14px;
    color: var(--textMuted);
    margin: 0;
}

.vm-text p.lead {
    font-size: 1.25rem;
    color: var(--textMuted);
}

.summit-generic-page {
    background: var(--surfaceColor);
}

.page-content {
    line-height: 1.8;
    color: var(--secondaryColor);
}

.page-content h1,
.page-content h2,
.page-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-horizontal-card {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    height: 300px;
    transition: all 0.4s ease;
}

.service-horizontal-card:hover {
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
    border-color: var(--primaryColor);
}

.service-horizontal-card .card-img {
    flex: 0 0 40%;
    overflow: hidden;
}

.service-horizontal-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-horizontal-card:hover .card-img img {
    transform: scale(1.05);
}

.service-horizontal-card .card-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-horizontal-card .card-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-horizontal-card .card-desc {
    font-size: 14px;
    color: var(--textMuted);
    margin-bottom: auto;
}

.service-horizontal-card .card-btn {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primaryColor);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Premium Architectural Footer --- */
.summit-footer {
    background: var(--secondaryColor);
    color: #FFFFFF;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture or pattern could go here */
.summit-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-top {
    padding-bottom: 80px;
}

.footer-logo {
    display: inline-block;
}

.footer-bio {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
    margin-top: 30px;
}

.footer-socials {
    margin-top: 30px;
}

.footer-socials .social-media-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials .social-media-links a:hover {
    background: var(--primaryColor);
    color: var(--secondaryColor);
    border-color: var(--primaryColor);
    transform: translateY(-5px);
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primaryColor);
    margin-bottom: 35px;
    position: relative;
}

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

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    position: relative;
}

.footer-nav li a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.footer-contact .contact-box {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact .contact-box i {
    color: var(--primaryColor);
    font-size: 18px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 40px;
}

.legal-links a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primaryColor);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Helper Classes */
.py-section {
    padding: var(--section-padding) 0;
}

.bg-platinum {
    background-color: var(--surfaceColor);
}

.text-gold {
    color: var(--primaryColor);
}