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

:root {
    /* Modern Professional Color Palette */
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #2563eb;
    --accent-hover: #1d4ed8;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --gray-text: #9ca3af;
    --dark-bg: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles - Clean & Modern */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
}

.header-top .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    font-size: 13px;
    font-weight: 500;
}

.header-top a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-top a:hover {
    opacity: 0.8;
}

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

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.dropdown {
    position: relative;
}

.dropdown > a span {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.dropdown:hover > a span {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.2s ease;
    border-radius: 2px;
}

/* Hero Section - Clean & Modern */
.hero {
    background-color: var(--white);
    color: var(--text-color);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.hero-subtitle a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-subtitle a:hover {
    color: var(--accent-hover);
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-light);
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 32px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Quote Form Section - Clean */
.quote-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.quote-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper {
    width: 100%;
    min-height: 683px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper iframe {
    width: 100% !important;
    height: 683px !important;
    border: none !important;
    border-radius: 12px !important;
    display: block;
}

.quote-form-container h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}

.quote-form-container h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Reviews Section - Clean */
.reviews-section {
    padding: 100px 0;
    background-color: var(--white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.rating-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.rating-text {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rating-subtext {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
}

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

.review-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-author {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    color: var(--text-color);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--text-light);
}

/* Services Section - Clean */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    font-size: 14px;
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    color: var(--text-color);
}

.contact-info-box {
    text-align: center;
    margin: 40px 0;
}

.contact-phone {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--accent-hover);
}

/* Footer - Clean */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 32px;
}

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

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    color: var(--white);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    color: var(--white);
    transition: opacity 0.2s ease;
}

.footer-section ul li:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.7;
    color: var(--white);
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 24px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 16px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--light-bg);
        margin-top: 8px;
        border: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .quote-form-container {
        padding: 32px 24px;
    }

    .services-grid,
    .reviews-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .header-top .contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-phone {
        font-size: 28px;
    }
}

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

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 14px;
    }

    .quote-form-container {
        padding: 24px 20px;
    }

    .contact-form-wrapper {
        min-height: 550px;
    }

    .contact-form-wrapper iframe {
        height: 550px !important;
        min-height: 550px;
    }
}

/* Service Page Styles - Clean */
.service-hero {
    background-color: var(--white);
    color: var(--text-color);
    padding: 100px 0;
    text-align: center;
}

.service-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 450px;
    background-color: var(--light-bg);
}

.service-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--primary-color);
}

.service-hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

.service-content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.service-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.service-process {
    margin: 32px 0;
    padding-left: 20px;
}

.service-process li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.service-process li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-box {
    background-color: var(--light-bg);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.cta-box h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--text-color);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0;
    }
    
    .service-hero-image {
        margin-bottom: 32px;
        border-radius: 8px;
    }
    
    .service-hero-image img {
        min-height: 300px;
    }
    
    .service-hero-title {
        font-size: 36px;
    }
    
    .service-hero-subtitle {
        font-size: 18px;
    }
    
    .service-content h2 {
        font-size: 28px;
    }
    
    .service-content h3 {
        font-size: 24px;
    }
    
    .cta-box {
        padding: 32px 24px;
    }
    
    .cta-box .cta-button {
        display: block;
        margin: 12px 0 !important;
        width: 100%;
    }
}
