:root {
    --primary-color: #0056b3;
    --secondary-color: #004085;
    --accent-color: #ffc107;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
}

.logo {
    height: 40px;
    width: auto;
}

.nav-link {
    position: relative;
    padding: 8px 16px !important;
    color: var(--secondary-color) !important;
    font-weight: 500;
}

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

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-quote {
    background-color: var(--accent-color);
    color: var(--secondary-color) !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-quote:hover {
    transform: scale(1.05);
    background-color: #ffcd39;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?ixlib=rb-4.0.3') center/cover;
    padding: 80px 0;
    color: white;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

oyal-hero .lead {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #ffcd39;
}

/* Contact Form Styles */
.contact-form {
    background: #ffcd39;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.form-control {
    border: 2px solid #eee;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* About Us Section Styles */
.about-us {
    background-color: #f8f9fa;
}

.about-us h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
}

.about-content p {
    color: #6c757d;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5em;
}

.feature span {
    font-weight: 500;
    color: #495057;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.background-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.icon-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    z-index: 1;
}

.icon-grid i {
    font-size: 3em;
    color: var(--primary-color);
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.icon-grid i:hover {
    transform: translateY(-5px);
}

/* Services Section Styles */
.services {
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .icon-wrapper i {
    font-size: 30px;
    color: white;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-expand {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-expand:hover {
    color: var(--secondary-color);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.service-list {
    columns: 2;
    column-gap: 30px;
    padding: 20px;
}

.service-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    break-inside: avoid;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Why Choose Us Section Styles */
.why-choose-us .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.why-choose-us .col-md-4 {
    margin-bottom: var(--bs-gutter-y);
}

@media (min-width: 768px) {
    .why-choose-us .row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--bs-gutter-y) var(--bs-gutter-x);
    }
    
    .why-choose-us .col-md-4 {
        margin-bottom: 0;
        width: 100%;
    }
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.feature-card i {
    font-size: 2.5em;
    color: var(--primary-color);
}

.feature-card h4 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 0;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.5;
}

/* What Makes Us Different Section Styles */
.difference-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

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

.difference-card i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.difference-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.difference-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Work Process Section Styles */
.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-step {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.process-step h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
    }
}

/* Projects Section Styles */
.project-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

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

.project-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-icon i {
    font-size: 30px;
    color: white;
}

.project-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.project-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Service Areas Section Styles */
.service-areas {
    background-color: #fff;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

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

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.area-icon i {
    font-size: 24px;
    color: white;
}

.area-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #6c757d;
}

.area-list li:last-child {
    border-bottom: none;
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-info-block h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.info-item p {
    margin: 0;
    color: #6c757d;
}

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

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

.directions-block {
    margin-top: 30px;
}

.directions-block h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.directions-section .direction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.directions-section .direction-item i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.directions-section .direction-item span {
    white-space: nowrap;
    color: #6c757d;
}

@media (max-width: 768px) {
    .directions-section .d-flex {
        flex-direction: column;
    }
    
    .directions-section .direction-item {
        width: 100%;
        justify-content: space-between;
    }
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.direction-item i {
    color: var(--primary-color);
}

.direction-item span {
    flex-grow: 1;
    color: #6c757d;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Map Section Styles */
.map-section {
    position: relative;
    width: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-info-block,
    .contact-form {
        margin-bottom: 30px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        justify-content: center;
    }
    
    .hero {
        text-align: center;
        padding: 40px 0;
    }
    
    .contact-form {
        margin-top: 30px;
    }
    
    .about-image {
        height: 300px;
        margin-top: 40px;
    }
    
    .features {
        margin-bottom: 30px;
    }
    
    .service-list {
        columns: 1;
    }
}

/* Testimonials Section Styles */
.testimonial-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-group {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .testimonial-group {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    background-color: #fff;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 15px;
    height: 100%;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 20px;
}

.client-info h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client-info span {
    color: #6c757d;
    font-size: 0.9em;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-prev, .nav-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.nav-prev:disabled, .nav-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.nav-prev:not(:disabled):hover, 
.nav-next:not(:disabled):hover {
    transform: scale(1.1);
}

/* Considerations Section Styles */
.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.consideration-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.consideration-item:hover {
    transform: translateY(-5px);
}

.consideration-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.consideration-item h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.consideration-item p {
    color: #6c757d;
    margin: 0;
}

/* Budget Request Section Styles */
.budget-request {
    background-color: #fff;
}

.budget-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.steps-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.2em;
}

/* FAQ Section Styles */
.faq {
    background-color: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
    padding: 20px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 20px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
}

.footer .navbar-brand {
    color: white;
    font-size: 1.8em;
}

.footer ul li a {
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--accent-color) !important;
}

.footer p {
    color: #999;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Legal Notice Modal Styles */
#legalModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#legalModal h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#legalModal h4:first-child {
    margin-top: 0;
}

#legalModal p {
    color: #6c757d;
    margin-bottom: 1rem;
    text-align: justify;
}

#legalModal .modal-footer .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

#legalModal .modal-footer .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Call to Action Button Styles */
.cta-button-container {
    text-align: center;
    margin: 60px 0;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #ffcd39;
    color: var(--secondary-color);
    text-decoration: none;
}

/* CTA Button Container Spacing */
.cta-button-container {
    text-align: center;
    margin: 60px 0;
}

/* Footer Modal Link Styles */
.footer a[data-modal] {
    cursor: pointer;
}