/* Reset & Base */
.services-page-wrapper {
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
}

.srv-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero */
.srv-hero {
    height: 86vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.srv-hero-content { width: 100%; }

.srv-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 10vw, 4rem);
    margin: 10px 0;
}

.gold { color: #d4af37; }

.srv-tag {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #d4af37;
}

/* Sections */
.srv-section { padding: 60px 0; }

.srv-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.srv-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    white-space: nowrap;
}

.srv-line {
    flex-grow: 1;
    height: 1px;
    background: #ddd;
}

/* Flex Row (Cards) */
.srv-row {
    display: flex;
    flex-wrap: wrap; /* This makes it responsive */
    gap: 20px;
}

.srv-card {
    flex: 1 1 calc(33.333% - 20px); /* 3 cards on desktop */
    min-width: 280px; /* Force stack on mobile */
    background: #fdfdfd;
    padding: 40px 20px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.srv-card:hover { border-color: #d4af37; transform: translateY(-5px); }

.srv-icon i { font-size: 2.5rem; color: #d4af37; margin-bottom: 20px; }

/* Construction Flex */
.srv-flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.srv-info-box {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 50px 30px;
    background: #111;
    color: white;
    border-radius: 12px;
}

.gold-bg { background: #d4af37; color: #111; }

/* Trading Grid */
.srv-trading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.srv-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.srv-item:hover { background: #111; color: white; border-color: #111; }

.srv-update { text-align: center; margin-top: 40px; color: #999; font-style: italic; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .srv-hero { height: 92vh; }
    .srv-section { padding: 40px 0; }
    .srv-title h2 { font-size: 1.4rem; }
    .srv-info-box { padding: 30px 20px; }
}