:root {
    --dark-green: #143522;
    /* Slightly darker and richer */
    --light-green: #2d6a45;
    --gold: #dcb343;
    /* More vivid premium gold */
    --gold-hover: #c49e35;
    --light-gray: #f9fafb;
    /* Softer gray with a tiny hint of blue/coolness */
    --text-color: #2c3e50;
    /* Richer dark text */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft ambient shadow */
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* Floating hover shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Elegant curve easing */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    /* Tighter modern kerning for headings */
}

/* Typography and Colors */
.text-gold {
    color: var(--gold) !important;
}

.bg-dark-green {
    background-color: var(--dark-green) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.text-dark-green {
    color: var(--dark-green) !important;
}

/* Navbar */
.custom-navbar {
    background-color: var(--dark-green);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.custom-navbar .navbar-brand .brand-text {
    line-height: 1.2;
    font-size: 1.25rem;
    letter-spacing: 0.01em;
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    position: relative;
}

/* Navbar hover line effect */
.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 1rem;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: calc(100% - 2rem);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #fff !important;
}

/* Base Buttons */
.custom-btn-nav {
    border-radius: 30px;
}

.btn {
    transition: var(--transition-smooth);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.6rem 1.5rem;
}

.btn-outline-gold {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #fff;
    box-shadow: 0 5px 15px rgba(220, 179, 67, 0.4);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 179, 67, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-hover) 0%, #b38b24 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(220, 179, 67, 0.5);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(20, 53, 34, 0.85), rgba(20, 53, 34, 0.9));
    color: #fff;
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.hero-section.page-hero {
    padding: 100px 0;
    background: linear-gradient(rgba(20, 53, 34, 0.92), rgba(20, 53, 34, 0.95));
}

.hero-section h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0.95;
}

/* Premium Card Design (Service Cards & general boxes) */
.service-card,
.premium-card,
.card {
    background: #fff;
    border-radius: 12px !important;
    box-shadow: var(--shadow-soft) !important;
    padding: 35px 25px;
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid transparent;
}

.service-card {
    text-align: center;
}

.card {
    border: none;
}

/* Enhanced hover effect for cards */
.service-card:hover,
.premium-card:hover,
.card:not(.no-hover):hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover) !important;
    border-bottom-color: var(--gold);
}

/* Service Icon Glow */
.service-icon,
i.fs-1,
i.fs-2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(220, 179, 67, 0.25));
    /* Subtle icon glow */
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(220, 179, 67, 0.4));
}

/* Image styling */
img.rounded,
.carousel {
    border-radius: 12px !important;
    box-shadow: var(--shadow-soft) !important;
    transition: var(--transition-smooth);
}

img.rounded:hover {
    box-shadow: var(--shadow-hover) !important;
}

/* List Styles */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #4a5568;
}

.custom-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(220, 179, 67, 0.3));
}

/* Gallery Placeholders */
.gallery-placeholder {
    background: linear-gradient(145deg, #f0f2f5, #e2e8f0);
    border-radius: 12px !important;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Footer Focus */
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
    /* Slide slightly right on hover */
}

.contact-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-top: 4px;
    width: 30px;
    /* Fix width for perfect alignment */
    text-align: center;
}

/* Form Styling Additions (Contact page) */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background-color: var(--light-gray) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(220, 179, 67, 0.15) !important;
    border-color: var(--gold) !important;
}

/* Section Spacing (Increased for more breathing room) */
.py-section {
    padding: 100px 0;
}

.pb-section {
    padding-bottom: 100px;
}

.pt-section {
    padding-top: 100px;
}

/* Sub-heading accents */
.text-uppercase {
    letter-spacing: 0.1em;
    /* Elegant spaced subtitles */
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.15rem;
    }

    .py-section {
        padding: 60px 0;
    }
}