:root {
    /* Updated Color Palette */
    --primary: #dbc19a;
    --primary-light: #e8d4b3;
    --primary-dark: #c8a882;
    --gold-elegant: #dbc19a;
    --gold-light: #e8d4b3;
    --gold-metallic: linear-gradient(135deg, #dbc19a 0%, #e8d4b3 25%, #dbc19a 50%, #c8a882 75%, #dbc19a 100%);
    --gold-shine: linear-gradient(45deg, #dbc19a, #e8d4b3, #dbc19a, #c8a882);
    --secondary: #4A90E2;
    --accent: #00D4AA;
    --dark: #231e1c;
    --dark-light: #2a2420;
    --dark-gray: #342e2a;
    --dark-surface: #2d2723;
    --light: #F8FAFC;
    --light-gray: #F1F5F9;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --gradient-primary: var(--gold-metallic);
    --gradient-hero: linear-gradient(135deg, #231e1c 0%, #2a2420 50%, #2d2723 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 0 30px rgba(219, 193, 154, 0.3);
    --shadow-gold-strong: 0 0 40px rgba(219, 193, 154, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

body {
    font-family: 'Avenir Light', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 300;
    background: #5546351f;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography - Avenir Light */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Avenir Light', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 300;
}

p, span, div, a, button {
    font-family: 'Avenir Light', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 300;
}

/* Header */
.header {
    background: rgba(35, 30, 28, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(219, 193, 154, 0.1);
}

.header.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
    background: rgba(35, 30, 28, 0.98);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    z-index: 10;
    position: relative;
    white-space: nowrap;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(219, 193, 154, 0.2);
}

.logo-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(219, 193, 154, 0.6);
    border-color: rgba(219, 193, 154, 0.5);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.nav-links a.active {
    color: var(--gold-elegant);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-elegant);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-elegant);
    transform: translateY(-1px);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(35, 30, 28, 0.98);
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(219, 193, 154, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 0;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: rgba(219, 193, 154, 0.1);
    color: var(--gold-elegant);
    transform: translateX(5px);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    font-family: 'Avenir Light', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-shine);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(219, 193, 154, 0.3);
    background-size: 200% 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(219, 193, 154, 0.5);
    animation: shimmer 1s ease-in-out;
}

.btn-outline {
    background: #332d27d6;
    color: var(--gold-elegant);
    border: 2px solid var(--gold-elegant);
    backdrop-filter: blur(10px);
    font-weight: 400;
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(219, 193, 154, 0.2);
    border-color: var(--gold-elegant);
    color: #282321;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 193, 154, 0.4);
}
.btn-outline1 {
    background: #332d27d6;
    color: var(--gold-elegant);
    border: 2px solid var(--gold-elegant);
    backdrop-filter: blur(10px);
    font-weight: 400;
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-outline1:hover {
    background: rgba(219, 193, 154, 0.2);
    border-color: var(--gold-elegant);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 193, 154, 0.4);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 30, 28, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 6rem 2rem 2rem;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 300;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold-elegant);
    transform: scale(1.1);
}

.mobile-nav .btn {
    margin-top: 1rem;
}

.mobile-dropdown {
    text-align: center;
    margin: 1rem 0;
}

.mobile-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem !important;
    color: var(--white) !important;
    margin: 0.5rem 0 !important;
    cursor: pointer;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(219, 193, 154, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-dropdown-content.active {
    max-height: 200px;
    padding: 1rem 0;
}

.mobile-dropdown-content a {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0.8rem 0 !important;
    padding: 0.5rem 1rem;
    display: block;
    transition: var(--transition);
}

.mobile-dropdown-content a:hover {
    color: var(--gold-elegant) !important;
    background: rgba(219, 193, 154, 0.1);
    border-radius: 6px;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(219, 193, 154, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(219, 193, 154, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(219, 193, 154, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--white);
    max-width: 600px;
    paddin: 0 2rem;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: left;
}

.hero-title1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    text-align: left;
}
.hero-title .highlight {
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}
.hero-title1 .highlight {
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 280px;
    max-width: 100%;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 3px rgba(219, 193, 154, 0.3),
        0 0 0 6px rgba(219, 193, 154, 0.2),
        0 0 0 12px rgba(219, 193, 154, 0.1),
        0 0 60px rgba(219, 193, 154, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(219, 193, 154, 0.1) 0%, transparent 70%);
}

.hero-image-main:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 0 3px rgba(219, 193, 154, 0.4),
        0 0 0 6px rgba(219, 193, 154, 0.3),
        0 0 0 12px rgba(219, 193, 154, 0.2),
        0 0 80px rgba(219, 193, 154, 0.6),
        0 40px 100px rgba(0, 0, 0, 0.4);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Page Hero - for internal pages */
.page-hero {
    background: var(--gradient-hero);
    min-height: 46vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(219, 193, 154, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(219, 193, 154, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(219, 193, 154, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Social Links */
.social-links {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(35, 30, 28, 0.8);
    border: 1px solid rgba(219, 193, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(219, 193, 154, 0.2);
    border-color: var(--gold-elegant);
    color: var(--gold-elegant);
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 4px 20px rgba(219, 193, 154, 0.3);
}

/* Animations */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Sections */
.section {
    padding: 4rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.content-section:nth-child(even) {
    background: #5546351f;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-shine);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-shine);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(219, 193, 154, 0.3);
    background-size: 200% 100%;
    animation: shimmer 4s infinite;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    color: #000000;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-shine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(219, 193, 154, 0.3);
    background-size: 200% 100%;
    animation: shimmer 4s infinite;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-description {
    color: #000000;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Miners Grid */
.miners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.miner-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
}

.miner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.miner-image {
    height: 200px;
    background: #e1e1e1c4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.miner-content {
    padding: 2rem;
}

.miner-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.miner-specs {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.miner-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-elegant);
    margin-bottom: 1rem;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #000000;
    font-weight: 300;
}

.features-list li::before {
    content: '✓';
    color: var(--gold-elegant);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Content Text */
.content-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #000000;
}

.content-text h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-text ol li {
    margin-bottom: 1rem;
    color: #000000;
    text-align: justify;
}

.content-text ol li strong {
    color: var(--text-primary);
    font-weight: 400;
}

/* Stats Section */
.stats {
    background: var(--dark);
    color: white;
}

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

.stats .stat-number {
    color: var(--gold-elegant);
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(219, 193, 154, 0.3);
    margin-bottom: 0.5rem;
}

.stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    background: #5546351f;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-shine);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(219, 193, 154, 0.3);
    background-size: 200% 100%;
    animation: shimmer 4s infinite;
}

.contact-details h3 {
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #000000;
    font-size: 1.05rem;
    font-weight: 300;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 400;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: #FAFAFA;
    font-weight: 300;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-elegant);
    box-shadow: 0 0 0 3px rgba(219, 193, 154, 0.1);
    background: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--gold-elegant);
    font-size: 1.3rem;
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.7rem;
    display: block;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--gold-elegant);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-image-container {
        width: 400px;
        height: 250px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.2rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-container {
        height: auto;
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-image-container {
        width: min(300px, 90vw);
        height: min(200px, 60vw);
        margin: 0 auto;
    }

    .page-hero {
        min-height: 40vh;
        margin-top: 80px;
    }

    .social-links {
        display: none;
    }

    .section {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .miners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 55px;
        height: 55px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav {
        padding: 1rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image-container {
        width: min(260px, 85vw);
        height: min(170px, 55vw);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-image-container {
        width: min(240px, 80vw);
        height: min(150px, 50vw);
    }
}

/* Facility Overview Section */
.facility-overview {
  background: var(--white);
  padding: 5rem 3rem;
  border-radius: 20px;
  margin: 4rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.facility-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-shine);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.facility-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.facility-text {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
}

.facility-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2rem;
  border-left: 4px solid var(--gold-elegant);
  padding-left: 2rem;
}

.facility-description {
  color: #2d2927;
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.facility-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-elegant);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.facility-location i {
  font-size: 1.3rem;
}

/* Image Carousel */
.facility-carousel {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.4s;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  height: 400px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  width: 50%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.carousel-slide:hover img {
  transform: scale(1.02);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
  background: var(--gold-elegant);
  border-color: var(--gold-elegant);
  box-shadow: 0 0 10px rgba(219, 193, 154, 0.5);
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 10;
  opacity: 0;
}

.facility-carousel:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background: rgba(219, 193, 154, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 15px;
}

.carousel-nav.next {
  right: 15px;
}

/* Carousel Overlay */
.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
  z-index: 5;
}

.facility-carousel:hover .carousel-overlay {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.overlay-description {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .facility-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .facility-overview {
    padding: 3rem 2rem;
  }

  .facility-carousel {
    height: 300px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .facility-overview {
    padding: 2rem 1.5rem;
  }

  .facility-carousel {
    height: 250px;
  }

  .facility-title {
    font-size: 2rem;
    padding-left: 1.5rem;
  }

  .facility-description {
    font-size: 1rem;
  }
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.neededclass {
    font-size: 40px;
    text-align: left;
}
.bitvine {
    font-weight: 800;
}