/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content wrapper */
.services-content {
    flex: 1 0 auto;
}

/* Footer Styles */
footer {
    flex-shrink: 0;
    background-color: var(--dark-color);
}

footer i {
    color: var(--primary-color);
}

footer p {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    footer .text-md-start,
    footer .text-md-end {
        text-align: center !important;
    }
    
    footer .col-md-6:first-child {
        margin-bottom: 1rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-color);
}

.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.card-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card ul li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-info {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Form Styles */
.form-control {
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Button Styles */
.btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* Services Page Styles */
.services-header {
    background-color: var(--light-color);
    padding-top: 100px;
}

.services-header h1 {
    color: var(--primary-color);
    font-weight: bold;
}

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-item h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.service-item h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item ul, .service-item ol {
    padding-left: 1.5rem;
}

.service-item li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-item ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.service-item ol {
    counter-reset: item;
}

.service-item ol li {
    counter-increment: item;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.service-item ol li::before {
    content: counter(item);
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item h2 {
        font-size: 1.8rem;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
    }
}

/* Logo and Brand Styles */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .small {
    font-size: 0.8rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 35px;
    }
    
    .navbar-brand .small {
        font-size: 0.75rem;
    }
}

/* Services Sidebar Styles */
.services-sidebar {
    position: sticky;
    top: 100px;
    z-index: 1000;
}

.services-sidebar .list-group-item {
    border: none;
    border-radius: 0;
    padding: 0;
    background-color: var(--light-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.services-sidebar .list-group-item > a {
    padding: 0.75rem 1rem;
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-sidebar .list-group-item > a:hover {
    background-color: var(--primary-color);
    color: white;
}

.services-sidebar .list-group-item > a i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.services-sidebar .list-group-item > a[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

.services-sidebar .list-group-item ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.services-sidebar .list-group-item ul::-webkit-scrollbar {
    width: 6px;
}

.services-sidebar .list-group-item ul::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 3px;
}

.services-sidebar .list-group-item ul::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}

.services-sidebar .list-group-item ul li {
    margin-bottom: 0.5rem;
}

.services-sidebar .list-group-item ul li a {
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    cursor: pointer;
}

.services-sidebar .list-group-item ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.services-sidebar .list-group-item i {
    width: 20px;
    text-align: center;
}

/* Service Cards Visibility */
.service-item {
    display: none;
}

.service-item.active {
    display: block;
}

@media (max-width: 768px) {
    .services-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .services-sidebar .list-group-item > a {
        padding: 0.5rem 0.75rem;
    }
}

/* Map Container Styles */
.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Testimonials Section */
.testimonials-section .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.testimonials-section .card-body {
    padding: 2rem;
}

.testimonials-section .card-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonials-section img {
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* Service Comparison Section */
.comparison-section .table {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-section .table th {
    background-color: var(--primary-color);
    color: white;
}

.comparison-section .table td {
    vertical-align: middle;
}

.comparison-section .fa-check {
    font-size: 1.2rem;
}

.comparison-section .fa-times {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

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

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 1.25rem;
    background-color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-section .card {
        margin-bottom: 1.5rem;
    }
    
    .comparison-section .table {
        font-size: 0.9rem;
    }
    
    .faq-section .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }
} 