/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #f4a261;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hero Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85) 0%, rgba(44, 122, 196, 0.75) 50%, rgba(26, 84, 144, 0.85) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a5490 0%, #2c7ac4 50%, #1a5490 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.95;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    animation: backgroundScroll 20s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes backgroundScroll {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(70px) translateY(70px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-text {
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text .lead {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: #e8945a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-form {
    animation: fadeInUp 1s ease 0.3s both;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.form-card p {
    color: var(--text-color);
    margin-bottom: 20px;
}

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

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: var(--light-color);
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-link:hover {
    color: var(--secondary-color);
    margin-left: 5px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.why-choose-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.benefits-list strong {
    color: var(--primary-color);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--light-color);
}

.process h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.step h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: #555;
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.stars {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* Areas Covered Section */
.areas-covered {
    padding: 80px 0;
    background: var(--light-color);
}

.areas-covered h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.area-card p {
    color: #555;
}

.areas-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.areas-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.areas-cta a:hover {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Bottom Contact Section */
.bottom-contact {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.accreditations {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .why-choose-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text .lead {
        font-size: 18px;
    }
    
    .services-grid,
    .reviews-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Performance Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background: var(--light-color);
}

.our-values h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

/* Meet Team Section */
.meet-team {
    padding: 80px 0;
}

.meet-team h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    gap: 50px;
    margin-top: 50px;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.member-photo img {
    width: 100%;
    border-radius: 10px;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 5px;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.member-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Accreditations Section */
.accreditations-section {
    padding: 80px 0;
    background: var(--light-color);
}

.accreditations-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.accred-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.accred-item {
    margin-bottom: 35px;
}

.accred-item h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 12px;
}

.accred-item p {
    color: #555;
    line-height: 1.7;
}

.accred-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Why Independent Section */
.why-independent {
    padding: 80px 0;
}

.why-independent h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.independent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.independent-point {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.independent-point h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.independent-point p {
    color: #555;
    line-height: 1.7;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: var(--light-color);
}

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

.cta-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #555;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.blog-category {
    color: var(--accent-color);
    font-weight: 600;
}

.blog-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Blog Article Page */
.blog-article {
    padding: 80px 0;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 16px;
    color: #888;
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

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

.article-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.article-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 10px;
    color: #444;
}

.article-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* Service Detail Styles */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 50px 0;
}

.service-detail-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-text ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-text ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-detail-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Areas Page Styles */
.areas-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.area-detail-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.area-detail-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.area-detail-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.area-detail-card ul {
    list-style: none;
    margin: 15px 0;
}

.area-detail-card ul li {
    padding: 8px 0;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.area-detail-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-form,
    .bottom-contact,
    footer {
        display: none;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   ======================================== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Better tap highlighting */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text size adjustment */
html {
    -webkit-text-size-adjust: 100%;
}

/* ========================================
   BREAKPOINT: Extra Large (Laptops)
   max-width: 1200px
   ======================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

/* ========================================
   BREAKPOINT: Large (Small Laptops/Tablets)
   max-width: 968px
   ======================================== */
@media (max-width: 968px) {
    /* Grid Layouts */
    .hero-content,
    .why-choose-content,
    .contact-content,
    .story-content,
    .accred-content,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-text .lead {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Navigation - Mobile Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.15);
        padding: 30px 0;
        z-index: 999;
        gap: 5px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 15px 30px;
        display: block;
    }
    
    .mobile-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-toggle span {
        width: 28px;
        height: 3px;
    }
    
    /* Animated Hamburger */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team Member */
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .member-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   BREAKPOINT: Medium (Tablets)
   max-width: 768px
   ======================================== */
@media (max-width: 768px) {
    /* Typography Scaling */
    html {
        font-size: 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Container & Spacing */
    .container {
        padding: 0 20px;
    }
    
    .section,
    .services-preview,
    .why-choose,
    .process,
    .reviews,
    .areas-covered,
    .faq,
    .bottom-contact,
    .our-story,
    .our-values,
    .meet-team,
    .blog-article {
        padding: 60px 0;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 50px 0;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .hero-text .lead {
        font-size: 1rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    /* Section Headers */
    .services-preview h2,
    .process h2,
    .reviews h2,
    .areas-covered h2,
    .faq h2,
    .our-values h2,
    .meet-team h2 {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 16px;
    }
    
    /* Grid Layouts */
    .services-grid,
    .reviews-grid,
    .areas-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Cards */
    .service-card {
        padding: 28px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 80px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .lead {
        font-size: 1.1rem;
    }
    
    /* Article Page */
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
        margin: 25px 0 12px;
    }
    
    .article-content p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
    
    /* Contact Grid */
    .contact-content {
        gap: 40px;
    }
    
    /* Tables Responsive */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ========================================
   BREAKPOINT: Small (Mobile Landscape)
   max-width: 600px
   ======================================== */
@media (max-width: 600px) {
    /* Typography */
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Container & Spacing */
    .container {
        padding: 0 15px;
    }
    
    .section,
    .services-preview,
    .why-choose,
    .process,
    .reviews,
    .areas-covered,
    .faq,
    .bottom-contact,
    .our-story,
    .our-values,
    .meet-team,
    .blog-article {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-text .lead {
        font-size: 0.95rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    /* Buttons - Touch Friendly */
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: block;
    }
    
    .btn-primary,
    .btn-secondary {
        margin: 8px 0;
    }
    
    /* Hero Form - Mobile Optimization */
    .hero-form,
    .form-card {
        padding: 20px;
        margin: 0 5px;
    }
    
    .form-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .form-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    /* HubSpot Form Fields */
    .hs-form-field {
        margin-bottom: 12px !important;
    }
    
    .hs-input {
        padding: 12px !important;
        font-size: 16px !important; /* Prevents iOS zoom */
    }
    
    .hs-button {
        width: 100% !important;
        padding: 14px !important;
        font-size: 1rem !important;
        min-height: 48px !important;
    }
    
    .hs-form-field label {
        font-size: 0.9rem !important;
    }
    
    /* Service Cards */
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    /* Section Headers */
    .services-preview h2,
    .process h2,
    .reviews h2,
    .areas-covered h2,
    .faq h2,
    .our-values h2,
    .meet-team h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    /* Why Choose Section */
    .why-choose-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .why-choose-text p {
        font-size: 0.95rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    /* Process Steps */
    .step {
        padding: 25px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .step h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    /* Review Cards */
    .review-card {
        padding: 25px;
    }
    
    .stars {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    /* Area Cards */
    .area-card {
        padding: 25px;
    }
    
    .area-card h3 {
        font-size: 1.15rem;
    }
    
    .area-card p {
        font-size: 0.9rem;
    }
    
    /* FAQ Section */
    .faq-item {
        padding: 25px;
        margin-bottom: 15px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .page-hero .lead {
        font-size: 0.95rem;
    }
    
    /* Blog Grid */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    /* Blog Article */
    .article-header {
        margin-bottom: 35px;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .article-meta {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .article-content {
        padding: 0 10px;
    }
    
    .article-content h2 {
        font-size: 1.3rem;
        margin: 30px 0 15px;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
        margin: 25px 0 12px;
    }
    
    .article-content h4 {
        font-size: 1rem;
        margin: 20px 0 10px;
    }
    
    .article-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .article-content ul,
    .article-content ol {
        margin: 18px 0 18px 25px;
    }
    
    .article-content li {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }
    
    .footer-col p {
        font-size: 0.9rem;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 25px;
    }
    
    /* CTA Sections */
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 20px;
        margin: 0 5px;
    }
    
    /* Value Cards */
    .value-card {
        padding: 28px;
    }
    
    .value-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .value-card h3 {
        font-size: 1.15rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

/* ========================================
   BREAKPOINT: Extra Small (Mobile Portrait)
   max-width: 480px
   ======================================== */
@media (max-width: 480px) {
    /* Typography */
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.35rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1.05rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 35px 0;
    }
    
    .hero-text h1 {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    
    .hero-text .lead {
        font-size: 0.9rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    /* Form */
    .form-card {
        padding: 18px;
    }
    
    .form-card h3 {
        font-size: 1.2rem;
    }
    
    .form-card p {
        font-size: 0.85rem;
    }
    
    .hs-input {
        padding: 10px !important;
    }
    
    .hs-button {
        padding: 12px !important;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 32px;
    }
    
    .service-card h3 {
        font-size: 1.05rem;
    }
    
    /* Section Headers */
    .services-preview h2,
    .process h2,
    .reviews h2,
    .areas-covered h2,
    .faq h2 {
        font-size: 1.35rem;
    }
    
    /* Step */
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    /* Article */
    .article-header h1 {
        font-size: 1.35rem;
    }
    
    .article-content h2 {
        font-size: 1.2rem;
    }
    
    .article-content h3 {
        font-size: 1.05rem;
    }
    
    /* Page Hero */
    .page-hero h1 {
        font-size: 1.35rem;
    }
    
    /* Navigation */
    .logo {
        font-size: 20px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 12px 25px;
    }
}