/* Font Face */
@font-face {
    font-family: 'Prompt';
    src: url('../fonts/Prompt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('../fonts/Prompt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('../fonts/Prompt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('../fonts/Prompt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('../fonts/Prompt-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* CSS Variables */
:root {
    --bg-dark: #2E2C35;
    --primary: #FAB74B;
    --text-light: #F5F5F5;
    --text-dark: #2E2C35;
    --accent: #E5A13E;
    --border: #4A4857;
    --success: #4CAF50;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(250, 183, 75, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-dark);
}

/* Navigation Header */
.navbar {
    background-color: var(--bg-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark);
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    gap: 0;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(250, 183, 75, 0.1);
    border-left-color: var(--primary);
    color: var(--primary);
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 44, 53, 0.85) 0%, rgba(46, 44, 53, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* About Section */
.about {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

.about .container {
    max-width: 1200px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.features {
    background-color: rgba(250, 183, 75, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-left: 2rem;
}

.feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.feature span {
    font-weight: 600;
    color: var(--text-light);
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #C0C0C0;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(46, 44, 53, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(250, 183, 75, 0.2);
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(250, 183, 75, 0.3);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #E0E0E0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    color: #C0C0C0;
    padding: 0.5rem 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.reviews h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.reviews .section-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: rgba(250, 183, 75, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.review-card:hover {
    background-color: rgba(250, 183, 75, 0.15);
    transform: translateY(-4px);
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.review-author {
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
}

/* CTA Section */
.cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--text-dark);
}

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

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta .btn {
    background-color: var(--bg-dark);
    color: var(--primary);
}

.cta .btn:hover {
    background-color: #3E3C45;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-map {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    color: #C0C0C0;
    line-height: 1.8;
}

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

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(46, 44, 53, 0.95) 0%, rgba(46, 44, 53, 0.85) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(46, 44, 53, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(250, 183, 75, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'Prompt', sans-serif;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(250, 183, 75, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(250, 183, 75, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-form .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 32px;
    margin-top: 1rem;
}

.form-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--success);
    color: var(--success);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Contact Info Section */
.contact-info-section {
    background: rgba(46, 44, 53, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(250, 183, 75, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(250, 183, 75, 0.2);
}

.info-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

/* Service Area Section */
.service-area {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

.service-area h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-area .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-area-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.service-area-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(250, 183, 75, 0.2);
}

.service-area-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.service-area-list {
    background: rgba(46, 44, 53, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(250, 183, 75, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-area-list h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.community-item {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0.8rem;
    background: rgba(250, 183, 75, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.community-item:hover {
    background: rgba(250, 183, 75, 0.15);
    transform: translateX(5px);
}

.community-item span {
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.5rem;
}

.service-note {
    font-size: 0.95rem;
    color: #C0C0C0;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 183, 75, 0.2);
}

.service-note a {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-note a:hover {
    color: var(--accent);
}

/* Contact Page Responsive Styles */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-area-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-area-map iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info-section,
    .service-area-list {
        padding: 2rem;
    }

    .communities-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }

    .contact-form,
    .contact-info-section,
    .service-area-list {
        padding: 1.5rem;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.75rem;
    }

    .service-area-list h3 {
        font-size: 1.5rem;
    }

    .service-area-map iframe {
        height: 300px;
    }
}

/* Footer */
.footer {
    text-decoration: none;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #C0C0C0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-light);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        left: 0;
        right: auto;
        min-width: 100%;
        background-color: rgba(250, 183, 75, 0.05);
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        padding-left: 0;
    }

    .dropdown-menu li {
        display: block;
        width: 100%;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        padding-left: 2rem;
        white-space: normal;
    }

    /* Mobile dropdown starts hidden, shows when active */
    .nav-menu.active .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: translateY(0);
    }

    .nav-menu.active .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        transform: translateY(0);
        margin-top: 0;
    }

    /* Adjust nav menu ul for mobile */
    .nav-menu ul {
        gap: 0;
    }

    .hero {
        min-height: 500px;
        padding: 80px 20px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about h2,
    .services h2,
    .reviews h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        flex: 1;
        max-width: 100%;
    }

    .contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Services Hero Section */
.services-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, rgba(46, 44, 53, 0.95) 0%, rgba(46, 44, 53, 0.85) 100%);
}

.services-hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-content {
    flex: 1;
}

.services-hero-content h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-hero-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(250, 183, 75, 0.3);
}

.services-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Core Services Section */
.core-services {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.core-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.core-service-card {
    text-align: center;
    padding: 3rem;
    background: rgba(46, 44, 53, 0.8);
    border-radius: 16px;
    border: 2px solid rgba(250, 183, 75, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.core-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(250, 183, 75, 0.3);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 12px;
}

.core-service-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.core-service-card .btn {
    margin-top: 2rem;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(250, 183, 75, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

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

/* WMP Difference Section */
.wmp-difference {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

.wmp-difference h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.difference-card {
    background: rgba(46, 44, 53, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(250, 183, 75, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.difference-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(250, 183, 75, 0.3);
}

.difference-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 40px;
}

.difference-icon {
    margin: 1.5rem 0 1.5rem;
}

.difference-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 8px;
}

.difference-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.difference-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Page Responsive Styles */
@media (max-width: 768px) {
    .services-hero .container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .services-hero-image {
        flex: 1;
        max-width: 100%;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
    }

    .core-service-card {
        padding: 2rem 1.5rem;
    }

    .core-service-card h3 {
        font-size: 1.5rem;
    }

    .service-list li {
        font-size: 1rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .feature-grid-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.75rem;
    }

    .core-services h2,
    .wmp-difference h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   SERVICE DETAIL PAGES STYLES
   ============================================ */

/* Service Detail Hero */
.service-detail-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(46, 44, 53, 0.95) 0%, rgba(46, 44, 53, 0.85) 100%);
    text-align: center;
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Features Section */
.service-features {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.feature-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.feature-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Gallery Section */
.service-gallery {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

.service-gallery h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(250, 183, 75, 0.3);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Service Detail Responsive */
@media (max-width: 768px) {
    .service-detail-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-grid,
    .feature-grid-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-item h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #2E2C35 0%, #3a3742 100%);
    color: #fff;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-hero-image {
    flex: 0 0 40%;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-hero-text {
    flex: 1;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #E0E0E0;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #D0D0D0;
}

/* Core Focus Section */
.core-focus {
    padding: 4rem 0;
    background-color: #2E2C35;
    color: #fff;
}

.core-focus h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.focus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #FFC857;
    transition: transform 0.3s ease, background 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.focus-card h3 {
    font-size: 1.8rem;
    color: #FFC857;
    margin-bottom: 1rem;
}

.focus-card p {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.8;
}

/* IICRC Section */
.iicrc-section {
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.iicrc-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.iicrc-text {
    flex: 1;
}

.iicrc-text h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.iicrc-text h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.iicrc-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #C0C0C0;
}

.iicrc-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.iicrc-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #C0C0C0;
}

.iicrc-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC857;
    font-weight: 700;
    font-size: 1.3rem;
}

.iicrc-image {
    flex: 0 0 300px;
}

.iicrc-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Our Process Section */
.our-process {
    padding: 4rem 0;
    background-color: #2E2C35;
    color: #fff;
}

.our-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 1rem);
    background: rgba(255, 255, 255, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #FFC857;
    color: #2E2C35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 200, 87, 0.4);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    color: #FFC857;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #E0E0E0;
    line-height: 1.8;
}

/* Our Guarantee Section */
.our-guarantee {
    padding: 4rem 0;
    background-color: rgba(250, 183, 75, 0.05);
}

.our-guarantee h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    background: rgba(46, 44, 53, 0.8);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(250, 183, 75, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.guarantee-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(250, 183, 75, 0.3);
    border-color: var(--primary);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.guarantee-text h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Page Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

    .about-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-hero-image {
        flex: 1;
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .about-hero .hero-subtitle,
    .about-hero p {
        font-size: 1rem;
        text-align: center;
    }

    .core-focus h2,
    .our-process h2,
    .our-guarantee h2 {
        font-size: 2rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

        .iicrc-content {
            flex-direction: column;
        }

        .iicrc-image {
            flex: 1;
            max-width: 100%;
        }

        .iicrc-text h2 {
            font-size: 1.8rem;
        }

        .iicrc-text h3 {
            font-size: 1.3rem;
        }

        .process-step {
            gap: 1.5rem;
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .process-step:not(:last-child)::after {
            left: 25px;
        }

        .step-content h3 {
            font-size: 1.5rem;
        }

        .guarantee-content {
            flex-direction: column;
            text-align: center;
            padding: 2rem 1.5rem;
        }
    }

/* ============================================
   TEAM PAGE STYLES
   ============================================ */

/* Team Hero Section */
.team-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(46, 44, 53, 0.95) 0%, rgba(46, 44, 53, 0.85) 100%);
    text-align: center;
}

.team-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.team-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Team Introduction Section */
.team-intro {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #C0C0C0;
    line-height: 1.8;
}

/* Team Members Section */
.team-members {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(46, 44, 53, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(250, 183, 75, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(250, 183, 75, 0.3);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #3E3C45;
}

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

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.team-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.team-info .bio {
    font-size: 1rem;
    color: #C0C0C0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-email {
    margin: auto;
    display: inline-block;
    padding: 10px 16px;
    background-color: rgba(250, 183, 75, 0.1);
    color: var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(250, 183, 75, 0.3);
}

.team-email:hover {
    background-color: rgba(250, 183, 75, 0.2);
    border-color: var(--primary);
}

/* Team Values Section */
.team-values {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

.team-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: rgba(46, 44, 53, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(250, 183, 75, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(250, 183, 75, 0.3);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Page Responsive Styles */
@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2.5rem;
    }

    .team-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image {
        height: 300px;
    }

    .team-image img {
        object-position: 0% 20%;
    }

    .team-info {
        padding: 2rem;
    }

    .team-info h3 {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-values h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-hero h1 {
        font-size: 2rem;
    }

    .team-info h3 {
        font-size: 1.5rem;
    }

    .team-info .position {
        font-size: 1rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   RECOMMENDED CONTRACTORS PAGE STYLES
   ============================================ */

/* Contractors Hero Section */
.contractors-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(46, 44, 53, 0.95) 0%, rgba(46, 44, 53, 0.85) 100%);
    text-align: center;
}

.contractors-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contractors-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contractors Introduction Section */
.contractors-intro {
    padding: 80px 20px;
    background-color: rgba(250, 183, 75, 0.05);
}

.contractors-intro .intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contractors-intro .intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(46, 44, 53, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(250, 183, 75, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.disclaimer-box h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.disclaimer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.disclaimer-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.disclaimer-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.disclaimer-footer {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 183, 75, 0.2);
    margin-bottom: 0;
}

/* Contractors Grid Section */
.contractors-grid-section {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.contractors-grid-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contractors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contractor-card {
    background: rgba(46, 44, 53, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(250, 183, 75, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.contractor-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(250, 183, 75, 0.3);
}

.contractor-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.contractor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.contractor-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.contractor-specialty {
    font-size: 1rem;
    color: #C0C0C0;
    font-weight: 500;
    margin: 0;
}

/* Contractors Page Responsive Styles */
@media (max-width: 768px) {
    .contractors-hero h1 {
        font-size: 2.5rem;
    }

    .contractors-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .contractors-intro .intro-content p {
        font-size: 1rem;
    }

    .disclaimer-box {
        padding: 2rem;
    }

    .disclaimer-box h3 {
        font-size: 1.5rem;
    }

    .disclaimer-list li {
        font-size: 0.95rem;
    }

    .contractors-grid-section h2 {
        font-size: 2rem;
    }

    .contractors-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .contractor-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }

    .contractor-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contractors-hero h1 {
        font-size: 2rem;
    }

    .contractors-hero .hero-subtitle {
        font-size: 1rem;
    }

    .disclaimer-box {
        padding: 1.5rem;
    }

    .disclaimer-box h3 {
        font-size: 1.3rem;
    }

    .contractors-grid {
        grid-template-columns: 1fr;
    }

    .contractor-icon {
        font-size: 2.5rem;
    }

    .contractor-card h3 {
        font-size: 1.1rem;
    }
}