/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar-brand .logo {
    text-align: left;
}

.navbar-brand .brand-name {
	color: #FF0000;
	font-size: 2.3rem;
	font-weight: bold;
	margin: 0;
}

.navbar-brand .brand-name a {
    color: inherit;
    text-decoration: none;
}

.navbar-brand .brand-tagline {
	color: #000000;
	font-size: 1.3rem;
	margin: 0;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.1);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #1e40af;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 0 80px;
    margin-top: 80px;
}

.page-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #9ca3af;
}

.breadcrumb a {
    color: #1e40af;
    text-decoration: none;
}

.page-header-image {
    position: relative;
}

.page-header-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 140px 0 100px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
	font-size: 2.5rem;
	color: #1e40af;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #374151;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
}

.hero-stats {
	display: flex;
	justify-content: space-around;
	color: #000000;
	text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #1e40af;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e40af;
    border: 2px solid #1e40af;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-outline:hover {
    background: #1e40af;
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

.alt-bg {
    background: #f8fafc;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Quick Services Grid */
.quick-services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Contact Forms */
.contact-form-section, .quote-form-section {
    padding: 80px 0;
    background: white;
}

.quote-form-section {
    background: #f8fafc;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #1e40af;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form, .quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio and Checkbox Groups */
.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.radio-custom, .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #1e40af;
    background: #1e40af;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #1e40af;
    background: #1e40af;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-submit {
    margin-top: 1rem;
    align-self: center;
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #1e40af;
}

.cta-section .btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
}

.cta-section .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #1e40af;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
	color: #FF0000;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
}

.footer-section h4 {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #3b82f6;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.contact-info a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #3b82f6;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.5rem;
    margin-right: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content, .page-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        padding: 2rem 0;
        z-index: 999;
    }

    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .navbar-nav li {
        text-align: center;
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-title, .page-header h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero, .page-header {
        padding: 120px 0 80px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title, .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .hero-img, .page-header-image img {
        height: 250px;
    }
}

/* Images */
img {
	max-width: 100%;
	height: 200px;
	object-fit: cover;
}

/* Image Placeholder Styling */
.hero-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 140px 0 100px;
    margin-top: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.thank-you-content h2 {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 2rem;
    font-weight: normal;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.next-steps {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.next-steps h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #1e40af;
}

.step-icon {
    font-size: 2rem;
    min-width: 50px;
}

.step-text h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-text p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.immediate-contact {
    background: #fff3cd;
    border: 2px solid #fbbf24;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.immediate-contact h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.immediate-contact p {
    color: #92400e;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.explore-more {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.explore-more h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.action-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.action-link:hover {
    border-color: #1e40af;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.link-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.link-text {
    text-align: left;
}

.link-text h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.link-text p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2.5rem;
    }

    .steps-grid, .action-links {
        grid-template-columns: 1fr;
    }

    .step, .action-link {
        flex-direction: column;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .next-steps, .explore-more {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }

    .success-icon {
        font-size: 4rem;
    }
}

/* End of additional styles */

/* AMC Plans Page Styles */
.plans-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 3px solid #1e40af;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-header h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-table table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.pricing-table td {
    padding: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.pricing-table td:first-child {
    font-weight: 600;
}

.pricing-table td:last-child {
    text-align: right;
    color: #1e40af;
    font-weight: bold;
}

.special-services {
    padding: 4rem 0;
}


.pricing-info {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.pricing-info p {
    margin: 0.5rem 0;
    font-weight: bold;
    color: #1e40af;
}

.benefits-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 3rem 0;
}

.pricing-section:nth-child(even) {
    background: #f8fafc;
}

.pricing-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table th {
    background: #1e40af;
    color: white;
    font-weight: 600;
}

.pricing-table tr:hover {
    background: #f8fafc;
}

.software-pricing-grid,
.emergency-pricing-grid,
.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-pricing-card,
.emergency-card,
.discount-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-pricing-card h3,
.emergency-card h3,
.discount-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.price-range {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.discount {
    color: #16a34a;
    font-weight: bold;
    font-size: 1.1rem;
}

.discounts-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.terms-section {
    padding: 4rem 0;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.terms-column h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Clients Page Styles */
.clients-section {
    padding: 4rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-2px);
}

.client-card h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.client-industry {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.client-card blockquote {
    font-style: italic;
    color: #374151;
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #1e40af;
}

.client-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.sectors-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sector-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.success-stories {
    padding: 4rem 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #1e40af;
}

.story-client {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.story-results h4 {
    color: #1e40af;
    margin: 1rem 0 0.5rem 0;
}

.coverage-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.coverage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.city {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.coverage-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: fit-content;
}

.stat-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.testimonials-section {
    padding: 4rem 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-grid,
    .services-grid,
    .benefits-grid,
    .clients-grid,
    .sectors-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .pricing-table-container {
        overflow-x: auto;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .cities-list {
        grid-template-columns: 1fr;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
