:root {
    --primary-blue: #0054a4;
    --secondary-blue: #0054a4;
    --light-blue: #57a6c3;
    --dark-text: #2c3e50;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.top-bar {
    background-color: #f8f9fa;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar a {
    color: var(--dark-text);
    text-decoration: none;
    margin: 0 1rem;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem !important;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--dark-text);
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.service-tag {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    font-size: 0.85rem;
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    background-color: #000000;
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-pattern {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="contour" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 50 10 Q 70 30 50 50 Q 30 70 50 90" stroke="%23#0054a4" fill="none" stroke-width="1.5"/><path d="M 40 15 Q 60 35 40 55 Q 20 75 40 95" stroke="%23#0054a4" fill="none" stroke-width="1"/><path d="M 60 5 Q 80 25 60 45 Q 40 65 60 85" stroke="%23#0054a4" fill="none" stroke-width="1"/></pattern></defs><rect width="800" height="600" fill="url(%23contour)"/></svg>') repeat;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-blue);
    font-weight: 400;
}

.hero-title .bold {
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 35px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--primary-blue);
}

/* Quote Section */
.quote-section {
    background-color: white;
    padding: 80px 0;
}

.quote-content {
    max-width: 1100px;
    margin: 0 auto;
}

.quote-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.quote-author {
    color: var(--primary-blue);
    font-weight: 600;
    font-style: normal;
}

/* Service Cards */
.services-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
    height: 100%;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.service-content {
    padding: 2rem;
}

.service-title {
    color: var(--dark-text);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-tags {
    margin-top: 1rem;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-blue);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.about-content {
    padding: 2.5rem;
}

.about-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* What Sets Us Apart */
.distinction-section {
    background: var(--light-gray);
    color: var(--dark-text);
    padding: 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.distinction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.distinction-section .container {
    position: relative;
    z-index: 2;
}

.distinction-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-blue);
}

.distinction-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* CTA Section */
.cta-section {
    background-color: #000000;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="contour" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 50 10 Q 70 30 50 50 Q 30 70 50 90" stroke="%23#0054a4" fill="none" stroke-width="1.5"/><path d="M 40 15 Q 60 35 40 55 Q 20 75 40 95" stroke="%23#0054a4" fill="none" stroke-width="1"/></pattern></defs><rect width="800" height="600" fill="url(%23contour)"/></svg>') repeat;
    opacity: 0.4;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 40px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Testimonial Section */
.testimonial-section {
    background-color: white;
    padding: 80px 0;
}

.testimonial-box {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--dark-text);
    font-weight: 600;
    font-style: normal;
}

/* Membership Section */
.membership-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
}

.membership-header {
    background: linear-gradient(90deg, #f4a460 0%, #daa520 100%);
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.membership-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.membership-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.membership-subtitle {
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 3rem;
}

.membership-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.membership-logo {
    width: 150px;
    height: 100px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.membership-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

/* Contact Form */
.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-blue);
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.location-title {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-address {
    color: #666;
    line-height: 1.8;
}

/* Service Detail Page */
.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 80px 0 60px;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content {
    padding: 80px 0;
}

.feature-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.feature-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-pattern {
        width: 100%;
        opacity: 0.2;
    }
    
    .service-image, .about-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-logos {
        gap: 1.5rem;
    }
    
    .membership-logo {
        width: 120px;
        height: 80px;
        font-size: 0.9rem;
    }
}

/* Forms Page Styling */
.forms-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-link {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.form-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.form-link i {
    color: var(--primary-blue);
    transition: color 0.3s;
}

.form-link:hover i {
    color: white;
}









/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.team-photo {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.team-name {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-title {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}