/* ========================================
   HGI Theme - Main Styles
   ======================================== */

/* ========================================
   Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 20px 0;
    transition: padding 0.4s var(--transition-smooth);
}

.site-header.scrolled .navbar {
    padding: 15px 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    z-index: 1001;
}

.logo-link,
.logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.logo-main {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.toggle-bar {
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.navbar-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Navigation Menu */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-black);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s var(--transition-smooth);
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--color-gold);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-typing-container {
    height: 50px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-gold);
    font-weight: 500;
}

.typing-cursor {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-gold);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.deco-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    opacity: 0.1;
}

.deco-line-1 {
    width: 1px;
    height: 200px;
    top: 20%;
    left: 10%;
}

.deco-line-2 {
    width: 1px;
    height: 300px;
    bottom: 10%;
    right: 15%;
}

.deco-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========================================
   About / Philosophy Section
   ======================================== */
.about-section {
    background: var(--color-black-light);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

/* Philosophy Timeline */
.philosophy-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.timeline-right {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    z-index: 10;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.timeline-content {
    width: 100%;
}

.timeline-card {
    background: var(--color-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-gold);
    transition: height 0.4s var(--transition-smooth);
}

.timeline-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.timeline-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-gold);
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.timeline-text p {
    color: var(--color-gray);
    line-height: 1.7;
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 15px;
    transition: all 0.4s var(--transition-smooth);
}

.timeline-text.expanded .expanded-content {
    max-height: 200px;
    opacity: 1;
}

.expand-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.expand-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.expand-btn.active .expand-icon {
    transform: rotate(180deg);
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-left,
    .timeline-right {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 20px;
    }
}

/* ========================================
   Business Section
   ======================================== */
.business-section {
    background: var(--color-black);
    position: relative;
}

.section-quote {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .business-grid {
        grid-template-columns: 1fr;
    }
}

/* 3D Flip Cards */
.business-card {
    height: 320px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s var(--transition-smooth);
    transform-style: preserve-3d;
}

.business-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--color-black-light);
    transition: all 0.4s ease;
}

.card-front {
    text-align: center;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--color-black-light), var(--color-black));
    border-color: var(--color-gold);
    text-align: center;
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.card-icon-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.business-card:hover .card-icon-wrap::before {
    transform: rotate(90deg);
}

.card-svg-icon {
    width: 45px;
    height: 45px;
    stroke: var(--color-gold);
}

.card-title {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.card-brief {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray);
}

/* ========================================
   Statistics Section
   ======================================== */
.statistics-section {
    background: linear-gradient(135deg, var(--color-black-light), var(--color-black));
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--color-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

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

.stat-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.stat-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate-slow 20s linear infinite;
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    stroke: var(--color-gold);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number-wrap {
    margin-bottom: 10px;
}

.stat-counter {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
    width: 0;
    transition: width 1.5s var(--transition-smooth);
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--color-black-light);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--color-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-gold);
    transition: height 0.4s var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.contact-card:hover::before {
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-card .card-icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
    margin-bottom: 0;
}

.contact-card .card-icon-wrap::before {
    display: none;
}

.card-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.contact-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.card-body {
    margin-bottom: 25px;
}

.company-name {
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

address {
    font-style: normal;
    color: var(--color-gray);
    line-height: 1.8;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.contact-email {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 15px;
    word-break: break-all;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    opacity: 0.7;
}

.network-locations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(10px);
}

.location-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: relative;
}

.location-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.location-name {
    color: var(--color-gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.location-item:hover .location-name {
    color: var(--color-white);
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translate(3px, -3px);
}

.network-count {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
}

.contact-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%23D4AF37' d='M450,200 Q500,150 550,200 T650,200 Q700,180 750,210 L750,300 Q700,280 650,300 T550,300 Q500,350 450,300 L450,200Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 40px;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.footer-tagline {
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
}

.footer-nav {
    list-style: none;
}

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

.footer-nav a {
    color: var(--color-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-nav a:hover {
    color: var(--color-gold);
    padding-left: 15px;
}

.footer-nav a:hover::before {
    width: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: var(--color-gray);
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-copyright p {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gray);
    transition: fill 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.social-link:hover svg {
    fill: var(--color-black);
}

/* ========================================
   Animation Utilities
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--transition-smooth);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--transition-smooth);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 5px;
    }

    .hero-badge {
        padding: 8px 20px;
    }

    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
}
