:root {
    --primary-color: #0d1b2a;
    /* Deep Blue */
    --secondary-color: #1b263b;
    /* Lighter Blue */
    --accent-color: #e0e1dd;
    /* Off White */
    --gold-color: #ffc107;
    /* Gold for accents */
    --green-color: #198754;
    /* Green for CTAs */
    --text-light: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Base Styles */
.bg-primary-custom {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-gold {
    color: var(--gold-color);
}

.bg-gold {
    background-color: var(--gold-color);
}

.btn-cta {
    background-color: var(--green-color);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #157347;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    padding-bottom: 80px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.opacity-90 {
    opacity: 0.9;
}

/* Feature Items in Hero */
.feature-item {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Form Styles */
.form-card {
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
}

.form-control,
.form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 27, 42, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
}

/* Sticky Bottom Bar for Mobile */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-top: 1px solid #dee2e6;
}

/* Misc */
.icon-box {
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: scale(1.1);
}

/* Service Areas */
.area-badge {
    transition: all 0.3s ease;
    cursor: default;
}

.area-badge:hover {
    background-color: var(--gold-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.bg-dark-blue {
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color) !important;
}

/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}