:root {
    --gold: #D4AF37;
    --gold-light: rgba(212, 175, 55, 0.1);
    --black: #222;
    --white: #fff;
    --gray-light: #f9f9f9;
    --gray-medium: #e0e0e0;
    --gray-dark: #555;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--black);
	
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.services-hero {
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
	
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.divider-line {
    width: 80px;
    height: 1px;
    background-color: var(--white);
}

.divider-diamond {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    margin: 0 20px;
    background-color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    overflow: hidden;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
color: var(--gray-dark);
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gray-dark);
}

.service-link:after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover:after {
    transform: translateX(5px);
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.service-detail.alt-bg {
    background-color: var(--gray-light);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.service-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.service-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-features {
    display: grid;
    gap: 30px;
}

.feature {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    background-color: var(--gold);
}

.feature-text h4 {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
	font-weight: bold; /* or font-weight: 700; */
}

.feature-text p {
    color: var(--gray-dark);
    font-size: 1rem;
    margin: 0;
	
}

/* CTA Section */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/background/services-hero.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    background-color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: transparent;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--white);
}

.cta-button.outline:hover {
    background: var(--white);
    color: var(--gray-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2, .service-header h2 {
        font-size: 2rem;
		color: #333333;
   font-weight: bold; /* or font-weight: 700; */
    }
}