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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.top-bar-logo-section {
    background: #000;
    padding: 20px 0;
    text-align: center;
}

.header-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
}

.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.address-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
}

.top-bar a {
    color: #0abab5;
    text-decoration: none;
}

.top-bar-logo {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
}

.top-bar-button {
    display: inline-block;
    background: #0abab5;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(10, 186, 181, 0.3);
}

.top-bar-button:hover {
    background: #089b96;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.4);
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
}

.nav-links a:hover {
    color: #0abab5;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    min-width: 220px;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #0abab5;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.gray {
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #0abab5;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 186, 181, 0.3);
}

.cta-button.secondary {
    background: #fff;
    color: #0abab5;
    border: 2px solid #0abab5;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

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

/* Cards */
.card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card p {
    color: #666;
    line-height: 1.8;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0abab5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.8;
}

/* FAQ Section */
.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #0abab5;
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 20px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.badge {
    text-align: center;
    padding: 20px;
}

.badge-icon {
    font-size: 48px;
    color: #0abab5;
    margin-bottom: 10px;
}

.badge p {
    color: #666;
    font-weight: 500;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0abab5 0%, #089b96 100%);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 5px;
}

.map-header {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #0abab5;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0abab5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Contact Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

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

.submit-button {
    background: #0abab5;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #089b96;
}

/* Pricing Table */
.pricing-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.pricing-info h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pricing-info table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-info th,
.pricing-info td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing-info th {
    background: #0abab5;
    color: #fff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    /* Force proper mobile scaling */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* Show dropdown items inline on mobile */
    .dropdown-menu {
        position: static !important;
        display: block !important;
        box-shadow: none !important;
        padding: 10px 0 10px 20px !important;
        background: #f8f9fa !important;
        margin: 5px 0 !important;
    }

    .dropdown-menu a {
        padding: 8px 15px !important;
        font-size: 14px !important;
    }

    /* Better mobile menu styling */
    .nav-links {
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 10001 !important;
        position: absolute !important;
        background: #fff !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2) !important;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links > li > a {
        padding: 15px 20px !important;
        display: block;
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .page-header p {
        font-size: 16px !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .top-bar {
        font-size: 11px;
        padding: 12px 0;
    }

    .top-bar-logo-section {
        padding: 15px 0;
    }

    .header-logo {
        max-width: 280px;
        width: 85%;
    }

    .top-bar-desktop {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar-right {
        text-align: center;
    }

    .address-text {
        font-size: 11px !important;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 11px;
        padding: 0 10px;
    }

    .top-bar-button {
        font-size: 12px !important;
        padding: 8px 16px !important;
        white-space: nowrap;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .sticky-widget-form {
        width: 95% !important;
        right: 2.5% !important;
        left: 2.5% !important;
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Fix grid layouts on mobile - FORCE single column */
    .grid-2,
    .grid-3,
    .services-grid,
    .testimonial-grid,
    .process-steps,
    div[style*="grid-template-columns"],
    div[style*="display: grid"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    .grid-2 > *,
    .grid-3 > *,
    .services-grid > *,
    .testimonial-grid > *,
    .process-steps > *,
    div[style*="grid-template-columns"] > *,
    div[style*="display: grid"] > * {
        margin-bottom: 20px;
        width: 100% !important;
        float: none !important;
    }

    /* Fix hero section on mobile */
    section[style*="padding: 100px"],
    section[style*="padding: 80px"] {
        padding: 50px 15px !important;
    }

    /* Fix all headings */
    h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Fix container padding on mobile */
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    /* Fix cards on mobile */
    .card {
        padding: 20px !important;
        margin-bottom: 15px;
    }

    /* Fix buttons on mobile */
    .cta-button {
        font-size: 14px !important;
        padding: 12px 20px !important;
        display: inline-block;
        width: auto;
    }

    /* Fix brand boxes - FORCE wrap */
    .brands-grid,
    div[style*="display: flex"][style*="gap: 40px"],
    div[style*="display: flex"][style*="justify-content: center"] {
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    div[style*="font-size: 20px"][style*="border: 2px solid"],
    .brand-name {
        font-size: 14px !important;
        padding: 8px 15px !important;
        margin: 5px;
        white-space: nowrap;
    }

    /* Fix sticky widget button on mobile */
    .sticky-widget {
        bottom: 10px;
        right: 10px;
    }

    .sticky-widget-button {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }

    .widget-text {
        display: none;
    }

    .widget-icon {
        font-size: 24px;
    }

    /* Fix footer on mobile */
    footer {
        overflow-x: hidden;
    }

    .footer-content {
        display: block !important;
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .footer-section {
        margin-bottom: 30px;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-section p,
    .footer-section a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix footer form on mobile */
    .footer-section form {
        max-width: 100%;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 20px;
    }

    /* Fix process steps */
    .process-steps {
        display: block !important;
    }

    .step {
        margin-bottom: 20px;
    }

    /* Fix map container */
    .map-container {
        height: auto !important;
        padding: 15px !important;
    }

    .map-container iframe {
        height: 200px !important;
    }

    .map-header {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    /* Fix all inline styles that use display flex */
    [style*="display: flex"] {
        flex-wrap: wrap !important;
    }

    /* Fix padding on sections */
    .content-section {
        padding: 40px 15px !important;
    }

    /* Fix page header padding */
    .page-header {
        padding: 50px 15px 30px !important;
    }

    /* Fix any overflow issues */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    img,
    iframe,
    video {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Fix navigation */
    nav {
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Fix badge icons */
    .badge {
        padding: 15px;
    }

    .badge-icon {
        font-size: 36px !important;
    }

    /* Fix testimonial cards */
    .testimonial,
    div[style*="border-left: 4px solid"] {
        padding: 20px !important;
        margin-bottom: 15px;
    }

    /* Fix tables on mobile */
    table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
    }

    /* Fix form groups */
    .form-group {
        margin-bottom: 15px !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px !important;
    }
}

    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.sticky-widget-form .submit-button:hover {
    background: #089b96;
}

