/* Base styles imported from the template */
:root {
    /* Primary Colors */
    --primary-dark: #1a2a3a;
    --primary-medium: #2c3e50;
    --accent-gold: #D4AF37;
    
    /* Secondary Colors */
    --charcoal: #383F51;
    --taupe: #C2B8A3;
    --cream: #F5F1E6;
    --light-gold: #F7E7CE;
    
    /* Utility Colors */
    --light: #F8F9FA;
    --grey: #E0E0E0;
    --dark: #343a40;
}

/* General styling for sections */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Hero section styles */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page hero styles */
.page-hero {
    background-color: var(--primary-dark);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: white;
}

.btn-primary:hover {
    background-color: #c09c30;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Grid layouts */
.services-grid, 
.about-grid, 
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--grey);
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

/* Error page */
.page-error {
    padding: 100px 0;
    text-align: center;
}

.page-error h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
    /* Service Page Variables */
    :root {
        --srvc-primary-dark: #1a2a3a;
        --srvc-primary-darker: #0f1a24;
        --srvc-accent-gold: #D4AF37;
        --srvc-accent-gold-light: rgba(212, 175, 55, 0.2);
        --srvc-accent-gold-medium: rgba(212, 175, 55, 0.5);
        --srvc-accent-gold-hover: #E5C767;
        --srvc-blue-coal: #383F51;
        --srvc-taupe: #C2B8A3;
        --srvc-light-gold: #F7E7CE;
        --srvc-cream: #F5F1E6;
        --srvc-light-white: #F8F9FA;
        --srvc-light-gray: #E0E0E0;
        --srvc-dark-gray: #343a40;
        --srvc-text-color: #333;
        --srvc-white: #fff;
        --srvc-white-transparency: rgba(255, 255, 255, 0.95);
        --srvc-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --srvc-box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
        --srvc-transition: all 0.3s ease;
    }


    