:root {
  --gold: #D4AF37;
  --gold-light: #F4E4A6;
  --green: #059669;
  --green-dark: #047857;
  --text-dark: #1a365d;
  --text-gray: #4a5568;
  --text-light: #94a3b8;
}

/* ---------- HERO ---------- */
.up-hero-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.up-hero-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--green-dark);
}
.up-hero-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ---------- FOOTER CONTAINER ---------- */
.up-footer-container {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
}
.up-footer-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
}
@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* ---------- SHAPES ---------- */
.up-geometric-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.up-shape { position: absolute; opacity: 0.1; animation: float 15s ease-in-out infinite; }
.up-shape:nth-child(1) {
    top: 10%; left: 10%;
    width: 80px; height: 80px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    border-radius: 50%;
}
.up-shape:nth-child(2) {
    top: 60%; right: 15%;
    width: 60px; height: 60px;
    background: linear-gradient(45deg, var(--green), var(--green-dark));
    transform: rotate(45deg);
}
.up-shape:nth-child(3) {
    bottom: 20%; left: 20%;
    width: 40px; height: 40px;
    background: linear-gradient(45deg, var(--green), var(--gold));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* ---------- FOOTER CONTENT ---------- */
.up-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}
.up-footer-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}
.up-footer-header h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.up-footer-header p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 300;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- GRID ---------- */
.up-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.up-footer-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.up-footer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    border-radius: 12px 12px 0 0;
}
.up-footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

/* ---------- CARD ICON ---------- */
.up-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--green));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.up-card-icon i { font-size: 1.2rem; color: white; }
.up-card-title { font-size: 1.1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 1rem; }
.up-card-content { color: var(--text-gray); line-height: 1.6; font-size: 0.9rem; }

/* ---------- LIST ---------- */
.up-contact-item { display: flex; align-items: center; margin-bottom: 0.8rem; }
.up-contact-item i { width: 16px; margin-right: 0.8rem; color: var(--green); }
.up-service-list { list-style: none; padding: 0; margin: 0; }
.up-service-item { padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; padding-left: 1rem; position: relative; }
.up-service-item::before { content: '•'; position: absolute; left: 0; color: var(--green); font-size: 0.8rem; }
.up-service-item:hover { color: var(--green-dark); padding-left: 1.2rem; }
.up-service-item:hover::before { color: var(--gold); }

/* ---------- LINKS ---------- */
.up-footer-link { color: var(--text-gray); text-decoration: none; position: relative; display: inline-block; }
.up-footer-link::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--green)); transition: width 0.3s ease; }
.up-footer-link:hover { color: var(--green-dark); transform: translateX(3px); }
.up-footer-link:hover::before { width: 100%; }

/* ---------- BOTTOM ---------- */
.up-footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #f1f5f9; }
.up-footer-bottom p { color: var(--text-light); font-size: 0.9rem; font-weight: 300; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .up-hero-section h1 { font-size: 2rem; }
    .up-footer-header h2 { font-size: 2rem; }
    .up-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .up-footer-container { margin-top: 2rem; }
}
@media (max-width: 480px) {
    .up-hero-section h1 { font-size: 1.5rem; }
    .up-footer-header h2 { font-size: 1.5rem; }
    .up-footer-card { padding: 1.5rem; }
}

/* 🌙 DARK MODE */
body.dark-mode {
    background: #0d1b0d;
    color: #e5e7eb;
}
body.dark-mode .up-footer-container {
    background: #0d1b0d;
    border-top: 1px solid #1f2937;
}
body.dark-mode .up-footer-card {
    background: #1b1b1b;
    border: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
body.dark-mode .up-footer-card::before {
    background: linear-gradient(90deg, var(--green), var(--gold));
}
body.dark-mode .up-card-title { color: var(--gold); }
body.dark-mode .up-card-content { color: #d1d5db; }
body.dark-mode .up-footer-header h2 {
    background: linear-gradient(135deg, var(--green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .up-footer-link { color: #d1d5db; }
body.dark-mode .up-footer-link:hover { color: var(--gold); }
body.dark-mode .up-footer-bottom p { color: #9ca3af; }
