html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    text-align: center;
}

.trust-item {
    padding: 1.5em;
}

.trust-item .icon {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    display: block;
}

.trust-item h3 {
    font-size: 1.1em;
    margin-bottom: 0.3em;
    color: #ffffff;
}

.trust-item p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media screen and (max-width: 736px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
}

/* Error Modal Styles */

/* Hero Section Styles */
#hero {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    text-align: center;
    padding: 4em 2em;
}

#hero .hero-headline {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

#hero .hero-subheadline {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5em;
}

#hero .hero-cta {
    background: #ff6b35;
    color: #ffffff;
    font-size: 1.2em;
    padding: 1em 2em;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: transform 0.2s;
}

#hero .hero-cta:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 736px) {
    #hero .hero-headline {
        font-size: 1.8em;
    }
    #hero .hero-subheadline {
        font-size: 1em;
    }
    #hero .hero-cta {
        font-size: 1em;
        padding: 0.8em 1.5em;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 49, 65, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-box {
    background: #ffffff;
    border-radius: 5px;
    padding: 2.5em;
    max-width: 450px;
    width: 90%;
    text-align: center;
}

.modal-box h3 {
    color: #2e3141;
    margin: 0 0 0.75em 0;
    font-size: 1.5em;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5em;
}

/* Underline under title - default (error) red */
.modal-box h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

/* Success modal - green underline */
.modal-box.success h3::after {
    background: #27ae60;
}

.modal-box p {
    color: rgba(46, 49, 65, 0.85);
    margin: 1em 0 1.5em 0;
    font-size: 1em;
    line-height: 1.65;
}

.modal-box .button {
    appearance: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: #2e3141;
    border-radius: 5px;
    border: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    height: 3.5em;
    letter-spacing: 0.1em;
    line-height: 3.5em;
    padding: 0 2.5em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.modal-box .button:hover {
    background-color: #4a4d63;
}

/* Menu logout button style */
#menu .links li form button.link-button {
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: block;
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 200;
    letter-spacing: 0.1em;
    line-height: 1.85em;
    padding: 0.75em 0;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

#menu .links li form button.link-button:hover {
    background: #45558d;
}

/* Menu user info section */
.menu-user-info {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 0;
    margin-bottom: 0.5em;
    border-bottom: solid 1px rgba(255, 255, 255, 0.125);
}

.menu-user-info .user-icon {
    font-size: 1.2em;
}

.menu-user-info .user-email {
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 0.8em;
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: none;
    opacity: 0.9;
}
/* Mobile Click-to-Call Button */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00d4ff;
    color: #1a1a2e;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    transition: transform 0.2s;
}

.mobile-call-button:hover {
    transform: scale(1.05);
}

.mobile-call-button .icon {
    margin-right: 8px;
}

@media screen and (max-width: 736px) {
    .mobile-call-button {
        display: inline-flex;
        align-items: center;
    }
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    font-family: 'Source Sans Pro', sans-serif;
}

.chat-header {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-status {
    width: 10px;
    height: 10px;
    background: #27ae60;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.chat-toggle {
    font-size: 20px;
    font-weight: bold;
}

.chat-body {
    display: flex;
    flex-direction: column;
    height: 300px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.chat-message.bot {
    background: #e3f2fd;
    color: #1565c0;
    align-self: flex-start;
}

.chat-message.user {
    background: #00d4ff;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
    outline: none;
    color: #333333 !important;
    background: #ffffff;
}

.chat-input button {
    padding: 10px 20px;
    background: #00d4ff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.chat-input button:hover {
    background: #7b2cbf;
}

@media screen and (max-width: 736px) {
    .chat-widget {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    .chat-header {
        border-radius: 0;
    }
}

/* Lead Magnet Section */
#lead-magnet {
    background: linear-gradient(135deg, #2b1055 0%, #1a0033 100%);
    text-align: center;
    padding: 5em 2em;
}

#lead-magnet h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 0.5em;
}

#lead-magnet p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    margin-bottom: 2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-form {
    max-width: 600px;
    margin: 0 auto 1em;
}

.lead-magnet-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1em;
    border-radius: 5px;
    width: 100%;
}

.lead-magnet-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-magnet-form input[type="submit"] {
    background: #00d4ff;
    color: #1a0033;
    font-weight: 700;
    width: 100%;
    padding: 0.8em 0.5em;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    font-size: 0.85em;
}

.lead-magnet-form input[type="submit"]:hover {
    background: #7b2cbf;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lead-magnet-note {
    font-size: 0.85em !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 1em;
}

@media screen and (max-width: 736px) {
    #lead-magnet {
        padding: 3em 1.5em;
    }
    #lead-magnet h2 {
        font-size: 1.5em;
    }
}

/* Optimized Contact Form */
#contact-optimized {
    background: linear-gradient(135deg, #1a0033 0%, #2b1055 100%);
    padding: 5em 2em;
}

#contact-optimized h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

#contact-optimized p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    margin-bottom: 2em;
}

.contact-form-optimized {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-optimized input,
.contact-form-optimized select,
.contact-form-optimized textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1em;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 1em;
}

.contact-form-optimized input::placeholder,
.contact-form-optimized textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-optimized select option {
    background: #1a0033;
    color: #fff;
}

.contact-form-optimized input[type="submit"] {
    background: #00d4ff;
    color: #1a0033;
    font-weight: 700;
    font-size: 1.2em;
    padding: 1em 2em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.contact-form-optimized input[type="submit"]:hover {
    background: #7b2cbf;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-note {
    font-size: 0.9em !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 1em;
}

/* FAQ Section on Homepage */
#faq-home {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 5em 2em;
}

#faq-home h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    max-width: 1000px;
    margin: 0 auto 2em;
    text-align: left;
}

.faq-item-home {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item-home h3 {
    color: #00d4ff;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.faq-item-home p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    line-height: 1.6;
}

/* About Greg Section */
#about-greg {
    background: linear-gradient(135deg, #1a0033 0%, #2b1055 100%);
    padding: 5em 2em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3em;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    border: 5px solid #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.about-text {
    text-align: left;
}

.about-text h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.about-text .tagline {
    color: #00d4ff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 1em;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 1em;
}

.about-stats {
    display: flex;
    gap: 2em;
    margin: 2em 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 736px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    .about-text {
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
    #faq-home {
        padding: 3em 1.5em;
    }
    #faq-home h2 {
        font-size: 1.8em;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    #contact-optimized {
        padding: 3em 1.5em;
    }
    #contact-optimized h2 {
        font-size: 1.8em;
    }
}

/* Optimized Contact Form */
#contact-optimized {
    background: linear-gradient(135deg, #1a0033 0%, #2b1055 100%);
    padding: 5em 2em;
}

#contact-optimized h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

#contact-optimized p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    margin-bottom: 2em;
}

.contact-form-optimized {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-optimized input,
.contact-form-optimized select,
.contact-form-optimized textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1em;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 1em;
}

.contact-form-optimized input::placeholder,
.contact-form-optimized textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-optimized select option {
    background: #1a0033;
    color: #fff;
}

.contact-form-optimized input[type="submit"] {
    background: #00d4ff;
    color: #1a0033;
    font-weight: 700;
    font-size: 1.2em;
    padding: 1em 2em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.contact-form-optimized input[type="submit"]:hover {
    background: #7b2cbf;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-note {
    font-size: 0.9em !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 1em;
}

@media screen and (max-width: 736px) {
    #contact-optimized {
        padding: 3em 1.5em;
    }
    #contact-optimized h2 {
        font-size: 1.8em;
    }
}

/* FAQ Section on Homepage */
#faq-home {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 5em 2em;
}

#faq-home h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 1.5em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    max-width: 1000px;
    margin: 0 auto 2em;
    text-align: left;
}

.faq-item-home {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item-home h3 {
    color: #00d4ff;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.faq-item-home p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    line-height: 1.6;
}

@media screen and (max-width: 736px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    #faq-home {
        padding: 3em 1.5em;
    }
    #faq-home h2 {
        font-size: 1.8em;
    }
}

/* About Greg Section */
#about-greg {
    background: linear-gradient(135deg, #1a0033 0%, #2b1055 100%);
    padding: 5em 2em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3em;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    border: 5px solid #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.about-text {
    text-align: left;
}

.about-text h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.about-text .tagline {
    color: #00d4ff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 1em;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 1em;
}

.about-stats {
    display: flex;
    gap: 2em;
    margin: 2em 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 736px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    .about-text {
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
}

/* Exit-Intent Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.exit-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    border: none;
    background: none;
}

.exit-popup-close:hover {
    color: #333;
}

.exit-popup h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.exit-popup p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.exit-popup-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.exit-popup-form button {
    background: #4a90d9;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}

.exit-popup-form button:hover {
    background: #357abd;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Service Pages */
.service-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-hero .service-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-hero .cta-button {
    background: #fff;
    color: #1a73e8;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    margin-bottom: 3rem;
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00d4ff !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.service-brands {
    margin-bottom: 3rem;
    text-align: center;
}

.service-brands h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00d4ff !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.brand-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
}

.service-why-us {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.service-why-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-why-us li {
    color: #333;
}

.service-why-us ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.service-why-us li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.service-cta {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.service-cta .cta-button {
    background: white;
    color: #f57c00;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Service Area Page */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.area-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid #4a90d9;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.area-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.area-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.map-container {
    margin: 3rem 0;
    text-align: center;
}

.map-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.map-container iframe {
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Enhanced Call Button Design */
.call-button-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.4),
        0 8px 30px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.call-button-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.call-button-enhanced:hover::before {
    left: 100%;
}

.call-button-enhanced:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.5),
        0 12px 40px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 100%;
}

.call-button-enhanced:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.4),
        0 6px 20px rgba(255, 107, 53, 0.2);
}

.call-button-enhanced .icon {
    font-size: 1.5rem;
    animation: phoneRing 2s ease-in-out infinite;
}

.call-button-enhanced .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.call-button-enhanced .main-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.call-button-enhanced .sub-text {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0deg); }
}

/* Pulse animation for attention */
.call-button-pulse {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 
            0 4px 15px rgba(255, 107, 53, 0.4),
            0 8px 30px rgba(255, 107, 53, 0.2);
    }
    50% { 
        box-shadow: 
            0 4px 20px rgba(255, 107, 53, 0.6),
            0 8px 40px rgba(255, 107, 53, 0.3),
            0 0 60px rgba(255, 107, 53, 0.1);
    }
}

/* Sticky call button for mobile */
.sticky-call-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    border-top: 2px solid rgba(255,255,255,0.3);
}

.sticky-call-button .icon {
    margin-right: 0.5rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@media screen and (max-width: 736px) {
    .sticky-call-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .call-button-enhanced {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .call-button-enhanced .main-text {
        font-size: 1.1rem;
    }
    
    .call-button-enhanced .sub-text {
        font-size: 0.75rem;
    }
}

/* Secondary call button style */
.call-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.call-button-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Fix: Trust signal icons - override template's FA5 font-family for FA6 */
.trust-item .icon:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Fix: Any icon with FA6 classes should use Font Awesome 6 */
.icon.fa-star:before,
.icon.fa-shield-alt:before,
.icon.fa-clock:before,
.icon.fa-map-marker-alt:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Service Area Map Section */
#service-area {
    padding: 4em 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

#service-area h2.major {
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5em;
}

#service-area .tagline {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2em;
    font-size: 1.1em;
}

.service-map-container {
    max-width: 900px;
    margin: 0 auto 2em auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.service-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8em;
    max-width: 800px;
    margin: 0 auto 1.5em auto;
}

.city-tag {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
    padding: 0.5em 1em;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: rgba(255, 107, 53, 0.25);
    transform: translateY(-2px);
}

.service-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
}

.service-note a {
    color: #ff6b35;
    text-decoration: none;
}

.service-note a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 736px) {
    .service-map-container iframe {
        height: 300px;
    }
    
    .city-tag {
        font-size: 0.85em;
        padding: 0.4em 0.8em;
    }
}
