/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #191919;
    color: #EAEAEA;
    line-height: 1.7;
    font-size: 17px;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    /* Increased max-width for a more spacious feel */
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Orbitron", sans-serif;
    color: #FFD700;
    /* Golden yellow accent */
    margin-top: 0;
    margin-bottom: 0.75em;
    /* Adjusted margin */
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    /* Adjusted for impact */
}

h2 {
    font-size: 2.2rem;
    /* Adjusted for section titles */
    text-align: center;
    margin-bottom: 1.5em;
    /* Increased bottom margin for spacing */
    position: relative;
    padding-bottom: 15px;
    /* Space for the underline */
}

h2::after {
    /* Underline accent for section titles */
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.25em;
    font-size: 1.15rem;
    /* Slightly larger paragraph text */
    color: #D0D0D0;
    /* Slightly softer than main text for less contrast */
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #fff;
    /* Brighter hover for yellow links */
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* Softer corners for images */
}

ul {
    list-style: none;
    padding-left: 0;
}

/* Header & Navigation */
header {
    background-color: rgba(28, 28, 28, 0.9);
    /* Slightly transparent dark background */
    padding: 1em 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #333;
    /* Subtle border */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    /* Slightly larger logo */
    font-weight: 700;
    color: #FFD700;
}

.logo:hover {
    color: #fff;
}

.nav-menu {
    display: flex;
    gap: 25px;
    /* Increased gap */
}

.nav-menu li a {
    font-size: 1.1rem;
    /* Slightly larger nav links */
    font-weight: 400;
    /* Normal weight for nav links */
    padding: 8px 15px;
    /* Added padding for better click targets */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu li a.active,
.nav-menu li a:hover {
    color: #1C1C1C;
    background-color: #FFD700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hamburger animation when active */
.nav-toggle.active .hamburger {
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(90deg);
}

/* Off-canvas mobile navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: #1C1C1C;
    border-left: 2px solid #FFD700;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
    background-color: #252525;
}

.mobile-logo {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #FFD700;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.mobile-nav-close:hover {
    color: #fff;
}

.close-icon {
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #333;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu li a {
    display: block;
    padding: 20px;
    color: #EAEAEA;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    background-color: #FFD700;
    color: #1C1C1C;
}

/* Main Content Area */
main {
    padding-top: 80px;
    /* Adjust based on header height */
}

section {
    padding: 80px 0;
    /* Increased section padding */
    border-bottom: 1px solid #2a2a2a;
    /* Subtle section separator */
}

section:last-of-type {
    border-bottom: none;
}

/* Hero Section */
#hero {
    background: url("../assets/images/hero-bg.jpg") no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 0;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    /* Ensure it takes a good portion of the viewport */
}

#hero::before {
    /* Gradient overlay for better text readability and style */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(28, 28, 28, 0.7), rgba(28, 28, 28, 0.9));
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 3rem;
    /* Larger hero title */
    margin-bottom: 0.5em;
    color: #fff;
    /* White for hero title for contrast against dark bg */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p {
    font-size: 1.4rem;
    /* Larger hero subtitle */
    margin-bottom: 1.5em;
    color: #EAEAEA;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
        /* Smaller title on mobile */
    }

    #hero p {
        font-size: 1.2rem;
        /* Smaller subtitle on mobile */
    }
}

/* CTA Buttons */
.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;

    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    /* More rounded */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background-color: #FFD700;
    color: #1C1C1C;
    border: 2px solid #FFD700;
}

.cta-button:hover {
    background-color: #e6c300;
    /* Darker yellow on hover */
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.cta-button-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-button-secondary:hover {
    background-color: #FFD700;
    color: #1C1C1C;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.2);
}

.home-contact-direct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

/* Subpage Hero Section */
.subpage-hero {
    background: url("../assets/images/hero-bg.jpg") no-repeat center center/cover;
    color: #fff;
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.subpage-hero .container {
    padding: 0 !important;
}

.subpage-hero::before {
    /* Gradient overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(28, 28, 28, 0.7), rgba(28, 28, 28, 0.9));
    z-index: 1;
}

.subpage-hero .container {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.subpage-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Intro Section */
#intro {
    text-align: center;
}

@media (min-width: 1024px) {
    #intro .container {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        justify-content: center;
    }

    #intro .content,
    #intro h2 {
        text-align: right;
    }

    #intro .content h2::after {
        right: 0;
        left: auto;
        transform: translateX(0);
    }

}

#intro img {
    margin-top: 30px;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Core Services Section */
#core-services .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    background-color: #252525;
    /* Slightly lighter than page bg */
    padding: 30px;

    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
}

.service-item img {
    width: 100px;
    /* Fixed size for service icons */
    height: 100px;
    object-fit: cover;
    /* Or contain, depending on image type */
    margin-bottom: 20px;
    border-radius: 50%;
    /* Circular service icons */
    border: 3px solid #FFD700;
}

.service-item h3 {
    margin-bottom: 0.5em;
    font-size: 1.4rem;
}

.service-item p {
    font-size: 1rem;
    color: #B0B0B0;
}

/* Service Option Icons (Areas page) */
.service-option-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    border: 3px solid #FFD700;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-item:hover .service-option-icon {
    background-color: #FFD700;
    border-color: #fff;
}

/* Blog Preview Section */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-preview-item {
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
}

.blog-preview-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid #333;
    transition: border-color 0.3s ease;
}

.blog-preview-item:hover img {
    border-color: #FFD700;
}

.blog-preview-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-preview-item h3 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-item h3 a:hover {
    color: #FFD700;
}

.blog-preview-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
}

.blog-preview-excerpt {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

/* Why Choose Us Section */
#why-choose-us ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

#why-choose-us li {
    background-color: #252525;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    /* Accent border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

#why-choose-us li:hover {
    transform: translateX(5px);
}

#why-choose-us li strong {
    display: block;
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #111111;
    /* Darker footer bg */
    color: #aaa;
    text-align: center;
    padding: 40px 0;

    border-top: 3px solid #FFD700;
    /* Accent top border */
    margin-top: 50px;
    /* Ensure space before footer */
}

footer p {
    margin-bottom: 0.5em;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 12px;
    /* Increased margin */
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links img {
    width: 35px;
    /* Larger social icons */
    height: 35px;
    border-radius: 50%;
    /* Circular social icons */
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-links a:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Parallax & Scroll Animations */
.parallax {
    background-attachment: fixed;
    /* This might be overridden by JS if a JS-based parallax is used */
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Specific Styles */
/* Services Page */
#service-details .service-detail-item {
    background-color: #252525;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#service-details .service-detail-item h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

#service-details .service-detail-item ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 10px;
}

#service-details .service-detail-item li {
    margin-bottom: 8px;
    color: #C0C0C0;
}

/* Areas Page */
#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    border: 3px solid #FFD700;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#service-areas-list .areas-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

#service-areas-list .area-coverage-item {
    background-color: #252525;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    /* Accent border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

#service-areas-list .area-coverage-item:hover {
    transform: translateX(5px);
}

#service-areas-list .area-coverage-item strong {
    display: block;
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

#service-areas-list .area-coverage-item span {
    color: #C0C0C0;
    line-height: 1.6;
}

/* About Us Page */
#company-story,
#mission-vision,
#founder-profile,
#core-values {
    margin-bottom: 50px;
}

#founder-profile img {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FFD700;
}

#core-values ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

#core-values li {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

#core-values li strong {
    display: block;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}

/* Blog Page */
.blog-post-list .blog-post-item {
    background-color: #252525;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-list .blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.blog-post-item img.featured-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-post-item h3 a {
    color: #FFD700;
}

.blog-post-item h3 a:hover {
    text-decoration: underline;
}

.post-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: #FFD700;
    font-weight: bold;
    border: 1px solid #FFD700;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #FFD700;
    color: #1C1C1C;
}

/* Contact Page */
#contact-form-section,
#contact-details-section {
    margin-bottom: 50px;
}

.contact-form {
    background-color: #252525;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #EAEAEA;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #EAEAEA;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-details-list li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details-list li i {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.5rem;
    width: 25px;
    text-align: center;
}

#map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Additional styles for enhanced sub-pages */
/* Page Hero Sections */
#page-hero {
    background: url("../assets/images/hero-bg.jpg") no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 0 80px 0;
    position: relative;
    margin-bottom: 0;
}

#page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(28, 28, 28, 0.6), rgba(28, 28, 28, 0.8));
    z-index: 1;
}

#page-hero .container {
    position: relative;
    z-index: 2;
}

#page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#page-hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5em;
    color: #EAEAEA;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Grid (Services page) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #252525;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 10px;
    font-family: "Orbitron", sans-serif;
}

.stat-item p {
    font-size: 1rem;
    color: #C0C0C0;
    margin: 0;
}

/* Service Detail Items (Services page) */
.service-detail-item {
    background-color: #252525;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.1);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse>* {
    direction: ltr;
}

.service-detail-text h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-detail-text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-detail-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #C0C0C0;
}

.service-detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.service-pricing {
    margin-top: 25px;
    padding: 20px;
    background-color: #1C1C1C;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.service-pricing .price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    font-family: "Orbitron", sans-serif;
}

.service-pricing .price-note {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #FFD700;
}

/* Features Grid (Services page) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #252525;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.feature-item p {
    color: #C0C0C0;
    line-height: 1.6;
}

/* Testimonial Section */
#services-testimonial,
#coverage-testimonials,
#contact-testimonials {
    background-color: #222;
    padding: 60px 0;
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #EAEAEA;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.testimonial-content blockquote::before,
.testimonial-content blockquote::after {
    content: '"';
    font-size: 3rem;
    color: #FFD700;
    position: absolute;
    top: -10px;
}

.testimonial-content blockquote::before {
    left: 0;
}

.testimonial-content blockquote::after {
    right: 0;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.testimonial-item blockquote {
    font-size: 1.1rem;
    color: #EAEAEA;
    margin-bottom: 20px;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* CTA Sections */
#services-cta,
#areas-cta,
#about-cta,
#blog-cta {
    color: #1C1C1C;
    text-align: center;
    padding: 60px 0;
}
#services-cta .container,
#areas-cta .container,
#about-cta .container,
#blog-cta .container,
#areas-contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-content h2 {
    color: #1C1C1C;
    margin-bottom: 20px;
}

.cta-content h2::after {
    background-color: #1C1C1C;
}

.cta-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background-color: #1C1C1C;
    color: #FFD700;
    border-color: #1C1C1C;
}

.cta-buttons .cta-button:hover {
    background-color: #111;
    color: #fff;
}

.cta-buttons .cta-button-secondary {
    background-color: transparent;
    color: #1C1C1C;
    border-color: #1C1C1C;
}

.cta-buttons .cta-button-secondary:hover {
    background-color: #1C1C1C;
    color: #FFD700;
}

/* Areas Page Specific Styles */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promise-item {
    text-align: center;
    padding: 25px;
    background-color: #252525;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.promise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.areas-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.areas-category {
    padding: 25px;
}

.areas-note,
.map-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #252525;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.map-info {
    margin-top: 20px;
    text-align: center;
}

.map-info p {
    margin-bottom: 10px;
    color: #C0C0C0;
}

/* Mobile Service Section */
.mobile-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mobile-service-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-service-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #C0C0C0;
}

.mobile-service-text li::before {
    content: '🚗';
    position: absolute;
    left: 0;
}

.mobile-service-pricing {
    margin-top: 25px;
    padding: 20px;
    background-color: #252525;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.mobile-service-pricing p {
    margin-bottom: 10px;
    color: #EAEAEA;
}

.mobile-service-pricing em {
    color: #FFD700;
}

/* About Page Specific Styles */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mission,
.vision {
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mission h2,
.vision h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission h2::after,
.vision h2::after {
    display: none;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.founder-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FFD700;
}

.founder-info h3 {
    color: #FFD700;
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.founder-info h4 {
    color: #C0C0C0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: normal;
}

.founder-specialties h5 {
    color: #FFD700;
    margin-bottom: 10px;
    margin-top: 20px;
}

.founder-specialties ul {
    list-style: disc;
    padding-left: 20px;
}

.founder-specialties li {
    color: #C0C0C0;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        width: 100%;
        height: auto;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

/* Blog Page Styles */
.blog-post-item {
    background-color: #252525;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.blog-post-item .featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 3px solid #FFD700;
}

.blog-post-content h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.blog-post-content h3 a {
    color: #FFD700;
    text-decoration: none;
}

.blog-post-content h3 a:hover {
    text-decoration: underline;
    color: #fff;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-excerpt {
    font-size: 1.1rem;
    color: #C0C0C0;
    margin-bottom: 20px;
    font-style: italic;
}

.post-content {
    margin-bottom: 30px;
    line-height: 1.7;
}

.post-content h4 {
    color: #FFD700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.post-content ol,
.post-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 10px;
    color: #C0C0C0;
}

.post-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
}

/* Single Blog Post Styles */
.single-post-nav {
    margin-bottom: 30px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background-color: #FFD700;
    color: #1C1C1C;
    transform: translateX(-5px);
}

.single-blog-post-item {
    background-color: #252525;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.single-post-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 3px solid #FFD700;
}

.single-post-content h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.single-post-meta {
    display: flex;
    gap: 25px;
    font-size: 1rem;
    color: #999;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
}

.single-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post-excerpt {
    margin-bottom: 40px;
}

.single-post-excerpt .lead {
    font-size: 1.3rem;
    color: #EAEAEA;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding: 25px;
    background-color: #1E1E1E;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
}

.single-post-body {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.single-post-body h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.single-post-body h4 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-post-body p {
    margin-bottom: 20px;
    color: #DADADA;
}

.single-post-body ol,
.single-post-body ul {
    padding-left: 30px;
    margin-bottom: 25px;
}

.single-post-body li {
    margin-bottom: 12px;
    color: #C8C8C8;
    line-height: 1.6;
}

.single-post-body li strong {
    color: #FFD700;
}

.post-conclusion {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    margin-top: 40px;
    text-align: center;
}

.post-conclusion h3 {
    color: #FFD700;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.single-post-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #333;
}

/* Post Navigation */
.post-navigation {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid #333;
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.post-nav-prev,
.post-nav-next {
    background-color: #252525;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.post-nav-prev:hover,
.post-nav-next:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.post-nav-prev a,
.post-nav-next a {
    display: block;
    padding: 25px;
    text-decoration: none;
    color: #EAEAEA;
}

.post-nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #FFFFFF;
}

/* Responsive adjustments for single post */
@media (max-width: 768px) {
    .single-blog-post-item {
        padding: 30px 25px;
    }
    
    .single-post-content h1 {
        font-size: 2rem;
    }
    
    .single-post-meta {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .single-post-featured-image {
        height: 250px;
    }
    
    .post-nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-nav-next {
        text-align: left;
    }
    
    .single-post-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .single-post-actions .cta-button,
    .single-post-actions .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method-item {
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method-item h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.contact-info a {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-description {
    color: #C0C0C0;
    margin-top: 10px;
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
    background-color: #252525;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #3a3a3a;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: #FFD700;
}

.time {
    color: #C0C0C0;
}

.hours-note {
    color: #888;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.location-info {
    text-align: center;
    margin-top: 30px;
    background-color: #252525;
    padding: 30px;
    border-radius: 10px;
}

.location-info h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.location-info p {
    margin-bottom: 10px;
}

.location-info a {
    color: #FFD700;
    text-decoration: none;
}

.location-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Additional Blog Preview Responsive Styles */
@media (max-width: 992px) and (min-width: 769px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        display: none;
    }

    /* Blog Preview Responsive */
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-preview-item {
        padding: 20px;
    }

    .blog-preview-item img {
        height: 150px;
    }

    /* Subpage Hero Mobile */
    .subpage-hero {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .subpage-hero h1 {
        font-size: 1.5rem !important;
    }

    .subpage-hero .container {
        padding: 20px;
    }
}