﻿/* ============================================
   ULTRAVENUS GROUP - Premium Corporate Website
   Liquid Glass / Glassmorphism Theme
   ============================================ */

/* CSS Variables */
:root {
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --purple-deep: #2d1b4e;
    --purple-royal: #5c3d8c;
    --obsidian: #0a0a12;
    --obsidian-light: #12121f;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.7);
    --white-subtle: rgba(255, 255, 255, 0.5);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--obsidian);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: liquid-flow 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple-royal) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: liquid-flow-reverse 25s ease-in-out infinite;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple-deep) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 8s ease-in-out infinite;
}

/* Luxury Watermark Logo */
.watermark-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

    .watermark-logo img {
        width: 60vw;
        max-width: 900px;
        min-width: 500px;
        height: auto;
        opacity: 0.1;
        filter: grayscale(10%) brightness(1.2);
        animation: watermark-pulse 10s ease-in-out infinite;
    }

@keyframes watermark-pulse {
    0%, 100% {
        opacity: 0.03;
        transform: scale(1);
    }

    50% {
        opacity: 0.05;
        transform: scale(1.02);
    }
}

@keyframes liquid-flow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -50px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.95);
    }

    75% {
        transform: translate(-30px, -30px) rotate(3deg) scale(1.02);
    }
}

@keyframes liquid-flow-reverse {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(-40px, 30px) rotate(-3deg) scale(0.98);
    }

    50% {
        transform: translate(30px, -20px) rotate(5deg) scale(1.05);
    }

    75% {
        transform: translate(20px, 40px) rotate(-2deg) scale(1);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(80px);
    }

    50% {
        opacity: 0.5;
        filter: blur(100px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================
   GLASS CARD STYLES
   ============================================ */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.05), inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.glass-card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .glass-card-hover:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(212, 175, 55, 0.2);
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.1), inset 0 0 40px rgba(255, 255, 255, 0.03);
        transform: translateY(-2px);
    }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

    .navbar.scrolled {
        padding: 12px 0;
        background: rgba(10, 10, 18, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 56px;
    width: auto;
    transition: all var(--transition-medium);
}

.navbar.scrolled .logo-image {
    height: 44px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--obsidian);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--white-subtle);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-muted);
    transition: color var(--transition-fast);
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width var(--transition-medium);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

/* Brand Switcher */
.brand-switcher {
    position: relative;
}

.brand-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

    .brand-switcher-btn:hover {
        background: rgba(212, 175, 55, 0.2);
    }

.chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.brand-switcher.open .chevron-icon {
    transform: rotate(180deg);
}

.brand-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: rgba(18, 18, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
}

.brand-switcher.open .brand-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

    .brand-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple-royal) 0%, var(--purple-deep) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 600;
    font-size: 14px;
}

.brand-desc {
    font-size: 12px;
    color: var(--white-subtle);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: right var(--transition-medium);
    }

        .nav-links.open {
            right: 0;
        }

    .mobile-menu-btn {
        display: flex;
    }

    .brand-switcher {
        width: 100%;
    }

    .brand-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.hero-description {
    font-size: 18px;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-quote {
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

    .hero-quote blockquote {
        font-family: var(--font-heading);
        font-size: 20px;
        font-style: italic;
        color: var(--white-muted);
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .hero-quote cite {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

.cite-name {
    font-weight: 600;
    color: var(--gold);
}

.cite-title {
    font-size: 14px;
    color: var(--white-subtle);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--white-subtle);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 47.5%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white-subtle);
    font-size: 12px;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-medium);
}

    .btn svg {
        width: 18px;
        height: 18px;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--obsidian);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

.btn-liquid {
    position: relative;
    overflow: hidden;
}

    .btn-liquid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
        border-radius: 50%;
    }

    .btn-liquid:hover::before {
        width: 300px;
        height: 300px;
    }

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    color: var(--white-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    padding: 28px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .value-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--gold);
    }

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-values {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.portfolio-card {
    padding: 32px;
    transition: all var(--transition-medium);
}

    .portfolio-card:hover {
        transform: translateY(-4px);
        border-color: rgba(212, 175, 55, 0.3);
    }

.portfolio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.portfolio-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple-royal) 0%, var(--purple-deep) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.portfolio-badge {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
}

.portfolio-category {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 16px;
}

.portfolio-desc {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.6;
}

.portfolio-content {
    margin: 20px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    min-height: 120px;
}

.content-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--white-subtle);
    font-size: 14px;
}

.portfolio-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    transition: gap var(--transition-fast);
}

    .portfolio-link:hover {
        gap: 12px;
    }

    .portfolio-link svg {
        width: 16px;
        height: 16px;
    }

/* ============================================
   SUBSIDIARIES SECTION
   ============================================ */

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.subsidiary-card {
    padding: 28px;
}

.subsidiary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.subsidiary-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--obsidian);
}

.subsidiary-status {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-expansion {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.subsidiary-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
}

.subsidiary-industry {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 12px;
}

.subsidiary-desc {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.subsidiary-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-stat {
    display: flex;
    flex-direction: column;
}

.sub-stat-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.sub-stat-label {
    font-size: 12px;
    color: var(--white-subtle);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--gold);
    }

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.6;
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--white-muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        color: var(--white);
        transition: all var(--transition-fast);
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--white-subtle);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.05);
        }

    .form-group select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
    }

        .form-group select option {
            background: var(--obsidian);
            color: var(--white);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ============================================
   AD PLACEHOLDER
   ============================================ */

.ad-placeholder {
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.ad-container {
    max-width: 728px;
    margin: 0 auto;
    text-align: center;
}

.ad-label {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-subtle);
    margin-bottom: 8px;
}

.ad-space {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white-subtle);
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(10, 10, 18, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.footer-logo:hover .footer-logo-image {
    opacity: 0.8;
}

.footer-tagline {
    font-size: 14px;
    color: var(--white-subtle);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--white-muted);
    transition: color var(--transition-fast);
}

    .footer-column a:hover {
        color: var(--white);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

    .footer-bottom p {
        font-size: 14px;
        color: var(--white-subtle);
    }

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

    .social-link svg {
        width: 18px;
        height: 18px;
        fill: var(--white-muted);
        transition: fill var(--transition-fast);
    }

    .social-link:hover {
        background: rgba(212, 175, 55, 0.2);
    }

        .social-link:hover svg {
            fill: var(--gold);
        }

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

    .modal.open {
        opacity: 1;
        visibility: visible;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white-muted);
    transition: color var(--transition-fast);
}

    .modal-close:hover {
        color: var(--white);
    }

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--gold);
}

.modal-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--white);
}

.modal-body p {
    font-size: 14px;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .scroll-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 640px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-container {
        padding: 60px 16px;
    }
}
/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a; /* Matches your dark theme */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it stays on top of everything */
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 30px;
    animation: pulse-gold 2s infinite ease-in-out;
}

.preloader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.1); /* Subtle gold background */
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    position: absolute;
    left: -100%;
    animation: loading-shimmer 1.5s infinite;
}

/* Animations */
@keyframes pulse-gold {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Class to hide preloader via JS */
.preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}


.logo-image {
    height: 50px; /* Adjust based on your preference */
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* Adds a premium depth */
}

.logo:hover .logo-image {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Ensure the text stays aligned with the horse shield */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #d4af37; /* Gold color */
    display: block;
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #ffffff;
    opacity: 0.8;
}