:root {
    --primary-color: #000000;      /* Black */
    --secondary-color: #f1c40f;    /* Yellow */
    --dark-color: #1a1a1a;         /* Rich Black */
    --light-color: #ffffff;        /* White */
    --accent-color: #000000;       /* Black Accent */
    --gray-dark: #2D2D2D;
    --gray-light: #404040;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background: var(--light-color);
    color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: transparent;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

.navbar-wrapper {
    width: 100%;
    max-width: 1320px;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.97) 0%,
        rgba(20, 20, 20, 0.97) 50%,
        rgba(0, 0, 0, 0.97) 100%
    );
    border-radius: 15px;
    padding: 0.5rem 1rem;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-wrapper .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand img {
    width: auto;
    height: 86px;
    filter: brightness(1) invert(0);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-text {
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.navbar-brand .logo-main {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-brand .logo-sub {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Responsive text sizes */
@media (max-width: 1200px) {
    .navbar-brand .logo-main {
        font-size: 1.3rem;
    }
    .navbar-brand .logo-sub {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand .logo-main {
        font-size: 1.2rem;
    }
    .navbar-brand .logo-sub {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 70px;
    }
    .navbar-brand .logo-main {
        font-size: 1.1rem;
    }
    .navbar-brand .logo-sub {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 60px;
    }
    .navbar-brand .logo-main {
        font-size: 1rem;
    }
    .navbar-brand .logo-sub {
        font-size: 0.8rem;
    }
    .navbar-brand {
        gap: 0.5rem;
    }
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-weight: 500;
    color: white !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    opacity: 1;
}

.quote-link {
    font-weight: 600;
}

@media (max-width: 1399.98px) {
    .navbar-wrapper {
        max-width: 1140px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-wrapper {
        max-width: 960px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-wrapper {
        max-width: 720px;
        padding: 0.5rem 1rem;
    }

    .navbar-wrapper .container {
        position: relative;
    }

    .navbar-collapse {
        position: fixed;
        right: -300px;
        top: 0;
        width: 300px;
        height: 100vh;
        background: #212529;
        padding: 5rem 1.5rem 2rem;
        transition: all 0.3s ease-in-out;
        z-index: 1050;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger the animation for each nav item */
    .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-item:nth-child(7) { transition-delay: 0.4s; }
    .nav-item:nth-child(8) { transition-delay: 0.45s; }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: white !important;
        transform: translateX(5px);
    }

    .nav-link::after {
        display: none;
    }

    .navbar-brand img {
        height: 50px;
    }

    .quote-link {
        background-color: rgba(0, 0, 0, 0.9);
        margin-top: 1rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .quote-link:hover {
        background-color: rgba(0, 0, 0, 1);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Burger Menu Button */
    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        padding: 0;
        margin-left: 1rem;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1060;
    }

    .navbar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }

    /* When menu is open, fix the burger button */
    .menu-open .navbar-toggler {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-wrapper {
        max-width: 540px;
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: 0.5rem;
    }

    .navbar-wrapper {
        max-width: 100%;
        margin: 0 0.5rem;
        padding: 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 72vh;  /* Reduced by another 10% from 80vh */
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    /*text-transform: uppercase;*/
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff6b4a;
    display: inline-block;
}

.hero-text {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #000000;
    color: #000000;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Services Section */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
}

.card-img-top {
    height: 200px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Services Section Styles */
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover::after {
    opacity: 1;
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-image:hover .service-icon {
    display: none;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

/* Service Images Fallback */
.service-image-fallback {
    height: 200px;
    background: linear-gradient(45deg, 
        rgba(29, 140, 80, 0.97) 0%,
        rgba(40, 180, 100, 0.97) 50%,
        rgba(29, 140, 80, 0.97) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
}

.service-image-fallback i {
    font-size: 3rem;
}

/* Features Section */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.features-section .col-md-3:hover .feature-icon {
    transform: scale(1.1);
}

.features-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Quote Form */
.page-content {
    padding-top: 90px;
}

.quote-form {
    margin-top: 1rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.quote-form .card-body {
    padding: 2rem;
}

.quote-form .card-title {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.quote-form .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quote-form .form-control,
.quote-form .form-select {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    color: var(--dark-color);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

.quote-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.quote-form {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.quote-form .card-body {
    padding: 3rem;
}

.quote-form .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.quote-form .form-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid #e9ecef;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.quote-form .form-control.is-invalid,
.quote-form .form-select.is-invalid {
    border-color: #dc3545;
}

.quote-form .form-control.is-invalid:focus,
.quote-form .form-select.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.quote-form .form-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.quote-form .btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.quote-form #estimatedCost {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border: none;
    border-radius: 10px;
}

.quote-form #estimatedCost .card-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.quote-form #costValue {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.quote-form .disclaimer {
    font-size: 0.875rem;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 768px) {
    .quote-form .card-body {
        padding: 2rem;
    }

    .quote-form .card-title {
        font-size: 2rem;
    }
}

#estimatedCost {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--dark-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

#estimatedCost .card-title {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#costValue {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Success Page */
.success-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.success-icon {
    color: #28a745;
    margin-bottom: 1.5rem;
}

.what-next {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.what-next h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.what-next ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.what-next ul li i {
    color: var(--accent-color);
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Animation for Success Icon */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    animation: checkmark 0.5s ease-in-out forwards;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0;
}

.footer h5 {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        padding-top: 60px;  /* Reduced from 120px */
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-title .highlight {
        text-transform: none;
        margin-top: 1rem;  /* Reduced from 2rem */
        display: block;
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .hero-content {
        padding-top: 0.8rem;  /* Reduced from 3rem */
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* About Page Styles */
.about-page {
    padding-top: 2rem;
}

.about-hero {
    padding: 4rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.experience-section {
    padding: 5rem 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--dark);
    font-size: 1.1rem;
}

.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.cta-content .btn-primary:hover {
    transform: translateY(-3px);
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.25rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .team-image img {
        height: 250px;
    }
}

/* Services Page Styles */
.services-page {
    padding-top: 90px;
}

.services-hero {
    background-color: var(--gray-dark);
    color: var(--light-color);
    padding: 3rem 0;  /* Reduced from 6rem to 3rem */
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

@media (max-width: 767.98px) {
    .services-hero {
        padding: 4rem 0;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }
}

.main-services {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    background: #f8f9fa;
    padding: 5rem 0;
    margin-top: 4rem;
}

.service-cta h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-cta p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .service-cta {
        padding: 3rem 0;
    }

    .service-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    background: #f8f9fa;
    padding: 5rem 0;
    margin-top: 4rem;
}

.service-cta h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-cta p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .service-cta {
        padding: 3rem 0;
    }

    .service-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-page {
    padding-top: 100px;
}

.contact-hero {
    background: linear-gradient(rgba(29, 140, 80, 0.9), rgba(29, 140, 80, 0.9)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    padding: 2rem 0 5rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(29, 140, 80, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    word-break: break-all;
}

.contact-info li i {
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #167d47;
    border-color: #167d47;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        padding: 1rem 0 3rem;
    }
}

/* Main Content Spacing */
.services-page,
.about-page,
.contact-page,
.quote-page {
    margin-top: 3%;  /* Reduced by another 5% */
}

/* Project Carousel Styles */
.project-card .carousel {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.project-card .carousel-item {
    height: 250px;
}

.project-card .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.project-card .carousel-indicators {
    margin-bottom: 0.5rem;
}

.project-card .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.project-card .carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 768px) {
    .project-card .carousel-item {
        height: 200px;
    }
}
