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

:root {
    --primary-color: #00bcd4;
    --secondary-color: #f5a623;
    --accent-color: #e91e63;
    --dark-bg: #1a1a1a;
    --dark-text: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-text);
}

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

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

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-text i {
    margin-right: 5px;
    color: var(--primary-color);
}

.top-bar-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone i {
    font-size: 24px;
    color: var(--primary-color);
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: var(--light-text);
}

.phone-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
}

/* Navigation */
.main-nav {
    border-top: 1px solid var(--border-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 15px 25px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    background: var(--primary-color);
    color: var(--white);
}

.main-nav .has-submenu > a i {
    font-size: 10px;
    margin-left: 5px;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid var(--border-color);
}

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

.submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background: var(--light-gray);
    padding-left: 25px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23333" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-features {
    list-style: none;
    margin: 25px 0;
}

.hero-features li {
    padding: 8px 0;
    font-size: 1.1rem;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Hero Form */
.hero-form {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-card {
    padding: 30px;
}

.form-card h3 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #00a5bb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

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

.btn-white:hover {
    background: var(--light-gray);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--accent-color);
}

.btn i {
    margin-right: 8px;
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    color: var(--white);
    padding: 30px 0;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.trust-item span {
    font-size: 14px;
    opacity: 0.9;
}

/* Service Boxes */
.service-boxes {
    padding: 50px 0;
}

.service-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-box {
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    transition: transform 0.3s ease;
}

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

.service-box-cyan {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.service-box-orange {
    background: linear-gradient(135deg, #f5a623 0%, #f57c00 100%);
}

.service-box i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.service-link:hover {
    border-bottom-color: var(--white);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: var(--white);
}

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

.content-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.lead {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.8;
}

.content-two-column {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.content-main h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.content-main h4 {
    margin-top: 20px;
    color: var(--primary-color);
}

/* Expertise Cards */
.expertise-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.expertise-card h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.expertise-card .btn {
    margin-top: 15px;
}

/* Lists */
.checkmark-list {
    list-style: none;
    margin: 20px 0;
}

.checkmark-list li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.process-list {
    counter-reset: process-counter;
    list-style: none;
    margin: 25px 0;
}

.process-list li {
    counter-increment: process-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    margin-bottom: 15px;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--primary-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Sidebar */
.sidebar-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097a7 100%);
    color: var(--white);
}

.sidebar-cta h3,
.sidebar-cta p {
    color: var(--white);
}

.sidebar-cta .btn {
    margin-bottom: 10px;
}

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

.sidebar-cta .btn-secondary:hover {
    background: var(--light-gray);
}

.small-text {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    opacity: 0.9;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    display: block;
    padding: 12px 0;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.sidebar-links i {
    margin-right: 8px;
    color: var(--primary-color);
}

.icon-list {
    list-style: none;
}

.icon-list li {
    padding: 8px 0;
}

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

.sidebar-info {
    background: linear-gradient(135deg, #f5a623 0%, #f57c00 100%);
    color: var(--white);
}

.sidebar-info h3 {
    color: var(--white);
}

.sidebar-info .icon-list i {
    color: var(--white);
}

/* Testimonials */
.testimonial {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial cite {
    font-size: 14px;
    color: var(--light-text);
    font-style: normal;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 20px;
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

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

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #0097a7;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Page Header (for internal pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097a7 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

table tr:nth-child(even) {
    background: var(--light-gray);
}

/* Info Box */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.info-box h4 {
    color: #1976d2;
    margin-bottom: 10px;
}

/* Warning Box */
.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.warning-box h4 {
    color: #f57c00;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .content-two-column {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav > ul > li > a {
        border-bottom: 1px solid var(--border-color);
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
    }

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

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

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

    .trust-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-boxes-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 14px;
    }

    table th,
    table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
