/* ============================================
   HGI THEME - CUSTOM STYLES
   Premium WordPress Theme
   ============================================ */

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

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

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

.logo {
    z-index: 100;
}

.logo a, .site-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 10px;
    z-index: 100;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
}

.mobile-nav-menu li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

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

.hero-video-bg {
    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(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%);
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.badge-icon {
    color: var(--gold);
    font-size: 12px;
}

.badge-text {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 10px;
    line-height: 1;
}

.hero-title .title-line {
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 5px;
    font-family: 'Playfair Display', serif;
}

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

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 18px 45px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--black);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 2s forwards;
    opacity: 0;
}

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

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

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

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

.deco-circle {
    position: absolute;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.circle-2 {
    width: 200px;
    height: 200px;
    right: -100px;
    bottom: 20%;
}

/* ============================================
   CEO MESSAGE SECTION
   ============================================ */
.ceo-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    position: relative;
    padding: 100px 0;
}

.ceo-content {
    max-width: 900px;
    margin: 0 auto;
}

.ceo-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.label-text {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
}

.ceo-message-wrapper {
    position: relative;
    padding: 40px;
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 20px;
}

.quote-mark {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.quote-open {
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-close {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.ceo-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 25px;
}

.ceo-text p:last-child {
    margin-bottom: 0;
}

.ceo-highlight {
    color: var(--white) !important;
    font-size: 1.2rem !important;
    text-align: center;
    padding: 30px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    margin: 30px 0 !important;
}

.ceo-highlight strong {
    color: var(--gold);
}

.ceo-signature {
    text-align: center;
    margin-top: 50px;
}

.signature-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.signature-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 10px;
}

.ceo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ceo-link:hover {
    color: var(--gold-light);
}

.ceo-title {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
}

.company-name {
    color: var(--white);
    margin-top: 10px;
    font-weight: 500;
}

.ceo-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 162, 39, 0.05);
    border-radius: 50%;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   ABOUT / MOTTO SECTION
   ============================================ */
.about-section {
    background: var(--black);
    padding: 100px 0;
    position: relative;
}

.motto-tagline {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: 15px;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(201, 162, 39, 0.2);
    transform: translateX(-50%);
}

.timeline-progress {
    width: 100%;
    height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 50px;
    margin-bottom: 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.timeline-item.left .timeline-icon {
    margin-left: auto;
}

.timeline-header {
    margin-bottom: 15px;
}

.timeline-number {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.5;
}

.timeline-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 5px;
}

.timeline-body p {
    color: var(--gray);
    line-height: 1.8;
}

.timeline-expand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item.left .timeline-expand {
    justify-content: flex-end;
}

.expand-icon {
    width: 25px;
    height: 25px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-expand:hover .expand-icon {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   BUSINESS SECTION
   ============================================ */
.business-section {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    padding: 100px 0;
}

.business-quote {
    font-size: 1.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 15px 0;
}

.business-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Flip Card Styles */
.flip-card {
    height: 320px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

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

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.flip-card-front {
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: rotateY(180deg);
    color: var(--black);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.flip-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(201, 162, 39, 0.2);
}

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

.card-hover-hint {
    font-size: 12px;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 15px;
}

.flip-card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.card-stats {
    margin-top: 20px;
    padding: 10px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics-section {
    background: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.stat-card {
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    opacity: 0;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stat-bar {
    height: 4px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

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

.stats-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 400px;
    height: 400px;
    left: -200px;
    top: 20%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: 20%;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    padding: 100px 0;
}

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

.contact-card {
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contact-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content p {
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.company-name-contact {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px !important;
}

.email-link {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--gold-light);
}

.network-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.network-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 30px;
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.network-item:hover {
    background: rgba(201, 162, 39, 0.2);
    color: var(--white);
}

.network-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s infinite;
}

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

.card-hover-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-card:hover .card-hover-effect {
    opacity: 1;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 162, 39, 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: 50px;
}

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

.footer-tagline {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 25px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.network-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.network-city {
    padding: 8px 15px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 30px;
    color: var(--gray);
    font-size: 13px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up-delay {
    opacity: 0;
    transform: translateY(30px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .business-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .business-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        width: 100%;
        padding: 0 20px 0 60px;
        text-align: left;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.left .timeline-expand {
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .timeline-line {
        left: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        letter-spacing: 2px;
    }
    
    .business-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .flip-card {
        height: 280px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .ceo-message-wrapper {
        padding: 30px 20px;
    }
    
    .quote-open, .quote-close {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-gold { background: var(--gold); }
.bg-black { background: var(--black); }

.hidden { display: none; }
.visible { display: block; }
