:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --accent-color: #e8c4a0;
    --text-dark: #333;
    --text-light: #666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    padding-top: 76px;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c19b2e;
    border-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 50px 0;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features */
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.service-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    margin-top: 76px;
}

/* About Section */
.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team */
.team-avatar {
    font-size: 5rem;
    color: var(--primary-color);
}

/* Contact */
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.map-placeholder {
    background-color: #e9ecef;
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

/* Service Details */
.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 100px 0;
    color: white;
    margin-top: 76px;
}

.service-detail-image {
    background: rgba(255,255,255,0.2);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.price-card {
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Footer */
footer .footer-link {
    color: #e9ecef !important;
    transition: all 0.3s ease;
}

footer .footer-link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

footer .list-unstyled li {
    margin-bottom: 10px;
}

footer .footer-contact {
    color: #e9ecef !important;
}

footer .footer-contact li {
    margin-bottom: 10px;
}

footer .social-links a {
    color: #fff !important;
}

footer .social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    display: inline-block;
}

/* Image Styles */
.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card {
    overflow: hidden;
}

.rounded-3 {
    border-radius: 15px !important;
}

.rounded-4 {
    border-radius: 20px !important;
}

img.img-fluid {
    max-width: 100%;
    height: auto;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-image-placeholder,
    .about-image-placeholder {
        height: 250px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}
