* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-card-hover: #1a2235;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #d97706;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    --border-color: #1f2937;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

/* Mobile-only auth items: hidden on desktop */
.nav-mobile-auth {
    display: none;
}

.active-menu {
    color: var(--gold) !important;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.badge {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
    overflow: hidden;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight {
    color: var(--gold);
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
}

.floating-card:nth-child(1) {
    /*top: 5%;*/
    /*left: -2%;*/
    /*animation-delay: 0s;*/
    top: 18%;
    right: -2%;
    animation-delay: 2s;
}

/*.floating-card:nth-child(2) {*/
/*    top: 25%;*/
/*    left: 8%;*/
/*    animation-delay: 1s;*/
/*}*/

/*.floating-card:nth-child(3) {*/
/*    top: 18%;*/
/*    right: 0%;*/
/*    animation-delay: 2s;*/
/*}*/

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1rem;
}

.floating-card-content {
    text-align: left;
}

.floating-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.floating-card-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.25rem;
    color: var(--gold);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            var(--bg-card) 100%
    );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-features li {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}

.services-preview {
    max-width: 1000px;
    margin: 4rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(251, 191, 36, 0.05);
}

.preview-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--gold);
}

.preview-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.preview-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.8rem;
}

.preview-nav a:hover {
    color: var(--gold);
}

.preview-content {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-info h4 {
    margin-bottom: 0.5rem;
}

.preview-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Advantages Section */
.advantages {
    background: var(--bg-dark);
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='none' stroke='%23fbbf24' stroke-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.tabletages{
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto; /* 横向滚动 */
}
.tabletages table{
    margin-top: 2rem;
    width: 100%;
    border-collapse: collapse;
    border-radius: 1rem;
}
/* 同时选择 th 和 td */
.tabletages table th,
.tabletages table td {
    border: 1px solid var(--gold);
    padding: 8px; /* 可选：增加内边距 */
    text-align: center; /* 可选：内容居中 */
}
/* 最后一列背景色 */
.tabletages table th:last-child,
.tabletages table td:last-child {
    color: var(--gold);
}
.features{
    max-width: 1200px;
    margin: 0 auto;
}
.features div p {
    color: var(--text-gray);
    font-size: 1rem;
}
.features div span {
    color: red;
    font-size: 1.1rem;
    padding-right: 5px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.advantage-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
            135deg,
            rgba(251, 191, 36, 0.2),
            rgba(251, 191, 36, 0.05)
    );
    border: 1px solid var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advantage-card .subtitle {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-row-item {
    text-align: center;
}

.stat-row-item .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-row-item .label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Process Section */
.process {
    background: var(--bg-dark);
    text-align: center;
    padding: 5rem 2rem;

}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1300px;
    margin: 3rem auto 0;
    position: relative;
    align-items: flex-start;
}

/* Horizontal connector line between cards */
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(251, 191, 36, 0.4),
        var(--gold),
        rgba(251, 191, 36, 0.4),
        transparent
    );
    z-index: 0;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 0.75rem;
    text-align: center;
}

/* Number badge on top */
.step-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

/* Card body */
.process-step-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.25rem 1.75rem;
    text-align: center;
    transition: all 0.3s;
}

.process-step-inner:hover {
    border-color: rgba(251, 191, 36, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Icon inside card */
.process-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin: 0 auto 1.25rem;
}

.process-step-inner h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.process-step-inner > p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Bullet list */
.process-step-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.process-step-list li {
    font-size: 0.8rem;
    color: var(--text-gray);
    padding-left: 1rem;
    position: relative;
}

.process-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Keep old .step-number for backward compat */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step > p {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Partners Section */
.partners {
    background: linear-gradient(
            180deg,
            var(--bg-card) 0%,
            var(--bg-dark) 100%
    );
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.calculate {
    max-width: 1200px;
    margin: 0 auto;
}
/* Calculator Styles */
.calculate-trx {
  display: flex;               
  flex-wrap: wrap;  
  gap: 2rem;            
  max-width: 1200px;
  margin: 0 auto;
}
.calculate-trx-div {
  flex: 1;             
  min-width: 0;       
}

.calculator-input-section {
  display: grid;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(251, 191, 36, 0.02));
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.input-group {
  flex: 1;
  min-width: 250px;
}

.input-group label {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.input-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.amount-select {
  flex: 1;
  min-width: 0;
  max-width: 10rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-select:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.amount-select:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.custom-amount {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.custom-amount:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.multiplier-group {
  flex: 1;
  min-width: 200px;
}

.multiplier-group label {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.multiplier-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.multiplier-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 8px;
  color: var(--bg-dark);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multiplier-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.multiplier-btn:active {
  transform: scale(0.95);
}

.multiplier-input {
  width: 100px;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.calculate-btn {
    max-width: 10rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 8px;
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.calculate-btn:active {
  transform: translateY(0);
}

/* Result Table */
.calculator-result {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.result-table {
  width: 100%;
  border-collapse: collapse;
}

.result-table thead {
  border-bottom: 2px solid var(--gold);
}

.result-table th {
  color: var(--gold);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
  color: var(--text-primary);
}

.result-table tbody tr {
  transition: all 0.3s ease;
}

.result-table tbody tr:hover {
  background: rgba(251, 191, 36, 0.05);
}

.result-table td:nth-child(2) {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.result-table td:nth-child(3) {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .calculate-trx {
    flex-direction: column;  /* 改为垂直排列 */
  }
  
  .calculate-trx-div {
    flex: none;              /* 重置flex，不再均分 */
    width: 100%;             /* 每个div占满整行 */
  }
  .calculator-input-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .input-group,
  .multiplier-group {
    width: 100%;
  }
  
  .input-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .amount-select,
  .custom-amount {
    width: 100%;
    flex: none;
  }
  
  .calculate-btn {
    width: 100%;
    justify-content: center;
  }
  
  .result-table {
    font-size: 0.875rem;
  }
  
  .result-table th,
  .result-table td {
    padding: 0.75rem 0.5rem;
  }
}

.partner-card:hover {
    border-color: var(--gold);
}

.partner-icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.partner-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.partner-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Bottom Stats */
.bottom-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
}

.bottom-stat {
    text-align: center;
}

.bottom-stat .icon {
    width: 50px;
    height: 50px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.bottom-stat .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.bottom-stat .label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .floating-cards {
        display: none;
    }

    .services-grid,
    .advantages-grid,
    .partners-grid,
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Show mobile-only Login & Register items */
    .nav-mobile-auth {
        display: block;
    }

    .nav-mobile-auth a {
        color: var(--text-gray);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-mobile-auth-register a {
        color: var(--gold);
        font-weight: 600;
        border-bottom: none;
    }

    .nav-cta .btn {
        display: none;
    }

    .nav-cta .badge {
        display: none;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .floating-cards {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid,
    .advantages-grid,
    .partners-grid,
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .service-card,
    .advantage-card,
    .partner-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding: 0;
    }

    .step-badge {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .process-step-inner {
        padding: 1.5rem 1rem;
    }

    .process-step-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat-row-item .value {
        font-size: 1.5rem;
    }

    .bottom-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .bottom-stat .value {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}


/* Hosting Page Specific Styles */

/* Hero Section for Hosting */
.hosting-hero {
    min-height: auto;
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
}

.hosting-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hosting-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hosting-hero h1 .highlight {
    color: var(--gold);
}

.hosting-hero .hero-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-gray);
}

.filter-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

/* Products Grid */
.products-section {
    padding: 2rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.product-description {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.product-price {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.product-price .unit {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

/* Custom Solution Section */
.custom-solution {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            rgba(251, 191, 36, 0.05) 50%,
            var(--bg-dark) 100%
    );
}

.custom-solution h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.custom-solution h2 .highlight {
    color: var(--gold);
}

.custom-solution p {
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hosting-hero {
        padding: 8rem 1rem 3rem;
    }

    .hosting-hero h1 {
        font-size: 2rem;
    }

    .filter-tabs {
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .products-section {
        padding: 1rem 1rem 3rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.25rem;
    }

    .custom-solution h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hosting-hero h1 {
        font-size: 1.5rem;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-price .price {
        font-size: 1.75rem;
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    min-height: auto;
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
    position: relative;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero h1 .highlight {
    color: var(--gold);
}

.about-hero .hero-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-stat-item {
    text-align: center;
}

.about-stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Management Team Section */
.management-team {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}
.team-card img{
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形，最稳 */
    object-fit: cover;
    border-radius: 12px;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.team-role {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.expertise-tags span {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 2rem;
    background: linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            rgba(251, 191, 36, 0.05) 50%,
            var(--bg-dark) 100%
    );
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 45%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 55%;
}

.timeline-marker {
    position: absolute;
    right: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--bg-dark);
    z-index: 1;
}

.timeline-item.right .timeline-marker {
    right: auto;
    left: -50px;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--gold);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.timeline-role {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Core Services Section */
.core-services {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 10rem 1rem 4rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stat-item .stat-value {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        margin-left: 60px;
    }

    .timeline-marker {
        right: auto !important;
        left: -60px !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }
}

/* Repair Page Styles */

/* Repair Hero Section */
.repair-hero {
    padding: 12rem 2rem 3rem;
    text-align: center;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
}

.repair-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.repair-hero-content .highlight {
    color: var(--gold);
}

.repair-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.repair-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.repair-meta i {
    color: var(--gold);
}

/* Authorized Banner */
.authorized-banner {
    padding: 2rem;
    background: var(--bg-dark);
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

/* Repair Info Section */
.repair-info {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.location-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.location-info strong {
    color: var(--gold);
}

.repair-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.repair-description p {
    margin-bottom: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--gold);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* Subscribe Section */
.subscribe-section {
    padding: 3rem 2rem;
    background: var(--bg-dark);
}

.subscribe-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.subscribe-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.subscribe-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.subscribe-text h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.subscribe-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.subscribe-form input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* Responsive for Repair Page */
@media (max-width: 1024px) {
    .subscribe-container {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-form {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .repair-hero {
        padding: 10rem 1rem 3rem;
    }

    .repair-hero-content h1 {
        font-size: 2rem;
    }

    .repair-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .authorized-banner {
        padding: 1.5rem 1rem;
    }

    .repair-info {
        padding: 3rem 1rem;
    }

    .location-info {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-submit {
        width: 100%;
    }

    .subscribe-section {
        padding: 2rem 1rem;
    }

    .subscribe-container {
        padding: 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .repair-hero-content h1 {
        font-size: 1.75rem;
    }

    .banner-image {
        border-radius: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 0.65rem 0.875rem;
    }
}

/* Products Page Styles */

/* Products Hero Section */
.products-hero {
    padding: 12rem 2rem 6rem;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
}

.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    color: var(--gold);
}

.hero-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.featured-product {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.featured-product h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.featured-product h2 span {
    color: var(--gold);
}

.featured-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.product-specs {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.spec-item {
    text-align: center;
}

.spec-item .label {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.spec-item .value {
    display: block;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Products Section */
.products-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.section-header h2 .highlight {
    color: var(--gold);
}

.section-header p {
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.search-bar {
    max-width: 600px;
    margin: 2rem auto 3rem;
}

.search-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.product-image {
    background: #000;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.product-brand {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stock-badge {
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.type-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec {
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
}

.spec-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.spec-value {
    display: block;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-check-price {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-check-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-load-more {
    display: block;
    margin: 3rem auto 0;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Carousel Section */
.carousel-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.carousel-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.carousel-arrow {
    background: linear-gradient(135deg, var(--bg-card), rgba(251, 191, 36, 0.08));
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.35);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-products {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0.5rem;
    flex: 1;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carousel-products::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
    background: transparent;
}

/* Hide scrollbar track */
.carousel-products::-webkit-scrollbar-track {
    background: transparent;
}

/* Hide scrollbar thumb */
.carousel-products::-webkit-scrollbar-thumb {
    background: transparent;
}

.carousel-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    min-width: 280px;
    max-width: 280px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.carousel-item:hover::before {
    opacity: 1;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    min-height: 2.8em;
}

.carousel-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.carousel-specs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.spec-tag {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: var(--gold-light);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-check-carousel {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.7rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-bottom: 0.75rem;
}

.btn-check-carousel:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.35);
}

.stock-indicator {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.stock-indicator.in-stock {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.stock-indicator.low-stock {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--gold);
}

.stock-indicator.out-of-stock {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Subscribe Section for Products */
.subscribe-section {
    padding: 3rem 2rem;
    background: linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            rgba(251, 191, 36, 0.05) 100%
    );
}

.subscribe-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.subscribe-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.subscribe-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
}

.subscribe-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-send {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* Responsive for Products Page */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .subscribe-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 10rem 1rem 4rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .featured-product {
        padding: 2rem 1.5rem;
    }

    .product-specs {
        gap: 2rem;
    }

    .products-section {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-products {
        width: 100%;
    }

    .carousel-item {
        min-width: 200px;
    }

    .subscribe-content-wrapper {
        gap: 2rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .btn-send {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .featured-product h2 {
        font-size: 1.5rem;
    }

    .product-specs {
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-specs .spec-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .product-specs .spec-item .label {
        margin-bottom: 0;
    }

    .product-image {
        min-height: 200px;
        padding: 1.5rem;
    }

    .product-specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */

/* Blog Hero Section */
.blog-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-hero h1 .highlight {
    color: var(--gold);
}

.blog-hero .hero-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-explore {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Featured Insights Section */
.featured-insights {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 .highlight {
    color: var(--gold);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.article-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.article-image {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-tags {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(251, 191, 36, 0.9);
    color: var(--bg-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.tag.cooling {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.tag.energy {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.tag.maintenance {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.tag.profitability {
    background: rgba(168, 85, 247, 0.9);
    color: white;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 0.75rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-gray);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--gold);
}

/* All Articles Section */
.all-articles {
    padding: 6rem 2rem;
    background: linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            rgba(251, 191, 36, 0.05) 50%,
            var(--bg-dark) 100%
    );
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.newsletter-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-subscribe-newsletter {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-subscribe-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* Responsive for Blog Page */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 10rem 1rem 4rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .featured-insights,
    .all-articles {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-card.featured {
        border-color: var(--border-color);
    }

    .newsletter-section {
        padding: 3rem 1rem;
    }

    .newsletter-container {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe-newsletter {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .article-image {
        min-height: 200px;
    }

    .article-content h3 {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
}

.contact-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-hero h1 .highlight {
    color: var(--gold);
}

.contact-hero .hero-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Connect Section */
.connect-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.connect-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.connect-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.connect-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.connect-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.connect-description {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Proposal Section */
.proposal-section {
    padding: 6rem 2rem;
    background: linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            rgba(251, 191, 36, 0.05) 50%,
            var(--bg-dark) 100%
    );
}

.proposal-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.proposal-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit-proposal {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-submit-proposal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.form-disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.6;
}

/* Emergency Support Section */
.emergency-support {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.emergency-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.emergency-container h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.emergency-container p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.emergency-phones {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.emergency-phone:hover {
    opacity: 0.8;
}

/* Responsive for Contact Page */
@media (max-width: 1024px) {
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 10rem 1rem 4rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .connect-section {
        padding: 4rem 1rem;
    }

    .connect-grid {
        grid-template-columns: 1fr;
    }

    .proposal-section {
        padding: 4rem 1rem;
    }

    .proposal-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .emergency-support {
        padding: 3rem 1rem;
    }

    .emergency-container {
        padding: 2rem 1.5rem;
    }

    .emergency-phones {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .form-header h3 {
        font-size: 1.25rem;
    }

    .form-header i {
        font-size: 1.75rem;
    }
}

/* Auth Pages (Login & Register) Styles */

.auth-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(
            ellipse at center,
            rgba(251, 191, 36, 0.05) 0%,
            transparent 70%
    );
}

.auth-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.auth-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--gold);
}

.forgot-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.forgot-link:hover {
    opacity: 0.8;
}

.btn-auth-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    position: relative;
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.social-login {
    margin-bottom: 1.5rem;
}

.btn-social {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-social:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.auth-footer a:hover {
    opacity: 0.8;
}

.auth-side {
    background: linear-gradient(
            135deg,
            rgba(251, 191, 36, 0.1),
            transparent
    );
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
}

.auth-side-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.auth-side-content > p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.auth-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-size: 0.95rem;
}

.auth-features li i {
    color: var(--gold);
    font-size: 1.25rem;
    width: 24px;
}

/* Responsive for Auth Pages */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .auth-side {
        order: -1;
    }
}

@media (max-width: 768px) {
    .auth-section {
        padding: 5rem 1rem 3rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.75rem;
    }

    .auth-side {
        padding: 2rem 1.5rem;
    }

    .auth-side-content h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem 1rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .auth-logo .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===== Language Switcher ===== */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(251, 191, 36, 0.08);
}

.lang-switcher.open .lang-btn {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(251, 191, 36, 0.08);
}

.lang-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-current {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.4rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(251, 191, 36, 0.08);
    color: var(--text-white);
}

.lang-option.active {
    color: var(--gold);
    font-weight: 600;
    background: rgba(251, 191, 36, 0.06);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

/* Mobile: lang switcher responsive */
@media (max-width: 768px) {
    .lang-btn .lang-current {
        display: none;
    }

    .lang-btn {
        padding: 0.45rem 0.6rem;
        gap: 0.25rem;
    }

    .lang-arrow {
        display: none;
    }

    .lang-dropdown {
        right: 0;
        left: auto;
        min-width: 130px;
    }
}

/* QA Section Styles */
.qa {
    max-width: 1200px;
    margin: 0 auto;padding: 6rem 2rem;
    background: var(--bg-dark);
}

.qa .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.qa .section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.qa .section-title {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.qa .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.qa-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.qa-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.15);
}

.qa-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold-light);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.qa-question i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.qa-answer {
    color: var(--text-primary);
    line-height: 1.7;
    padding-left: 2.5rem;
}

.qa-answer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .qa-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .qa {
        padding: 4rem 1.5rem;
    }

    .qa .section-title {
        font-size: 2rem;
    }

    .qa .section-subtitle {
        font-size: 1rem;
    }

    .qa-item {
        padding: 1.5rem;
    }

    .qa-question {
        font-size: 1rem;
        gap: 0.75rem;
    }

    .qa-question i {
        font-size: 1.25rem;
    }

    .qa-answer {
        padding-left: 2rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .qa {
        padding: 3rem 1rem;
    }

    .qa .section-title {
        font-size: 1.75rem;
    }

    .qa-item {
        padding: 1.25rem;
    }

    .qa-answer {
        padding-left: 0;
        margin-top: 0.75rem;
    }
}