/* ========================================
   MECHANICAL PAGE STYLES
   ======================================== */

/* Mechanical Hero Section */
.mechanical-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mechanical-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.mechanical-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mechanical-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 130, 195, 0.8) 0%, rgba(213, 78, 41, 0.6) 100%);
    z-index: -1;
}

.mechanical-hero .hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    z-index: 1;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mechanical-hero .hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

.mechanical-hero .hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.mechanical-hero .hero-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(58, 130, 195, 0.3) 0%, 
        rgba(213, 78, 41, 0.3) 25%, 
        rgba(107, 222, 98, 0.3) 50%, 
        rgba(213, 78, 41, 0.3) 75%, 
        rgba(58, 130, 195, 0.3) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

.mechanical-hero .hero-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.mechanical-hero .garage-hero-image {
    max-width: clamp(300px, 40vw, 500px) !important;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.mechanical-hero .garage-hero-image:hover {
    transform: scale(1.02);
}

.mechanical-hero .hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--auto-blue);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mechanical-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.mechanical-hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

/* Mechanical About Section */
.mechanical-about {
    background: var(--gray-100);
    padding: 80px 0;
}

.mechanical-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

.mechanical-about .about-text h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--auto-blue);
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.mechanical-about .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-700);
}

.mechanical-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mechanical-stats .stat {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mechanical-stats .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--auto-blue), var(--orange));
    opacity: 0;
    transition: var(--transition);
}

.mechanical-stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mechanical-stats .stat:hover::before {
    opacity: 1;
}

.mechanical-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--auto-blue);
    margin-bottom: 10px;
    display: block;
    transition: var(--transition);
}

.mechanical-stats .stat:hover .stat-number {
    transform: scale(1.1);
}

.mechanical-stats .stat-label {
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mechanical Services Section */
.services-section {
    background: var(--white);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Card Styles */
.auto-repairs-card {
    border-left: 4px solid var(--auto-blue);
}

.heavy-equipment-card, .septic-card {
    border-left: 4px solid var(--flash-red);
}

.oil-service-card {
    border-left: 4px solid var(--grass-green);
}

.tire-service-card, .landscaping-card {
    border-left: 4px solid var(--auto-blue);
}

.welding-service-card, .equipment-card {
    border-left: 4px solid var(--flash-red);
}

.trucking-services-card, .snow-card {
    border-left: 4px solid var(--grass-green);
}

.commercial-vehicles-card {
    border-left: 4px solid var(--grass-green);
}

.equipment-card {
    border-left: 4px solid var(--auto-blue);
}

/* Float Trailer SVG Icon Styling */
.float-trailer-icon {
    display: inline-block;
    width: 8rem;
    height: 4rem;
    line-height: 1;
}

.float-trailer-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Pre-Safety Inspection Section */
.safety-inspection-section {
    background: linear-gradient(135deg, rgba(58, 130, 195, 0.05) 0%, rgba(107, 222, 98, 0.05) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.safety-inspection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(58,130,195,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(107,222,98,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.safety-inspection-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(58, 130, 195, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    transition: var(--transition);
}

.safety-inspection-box:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(58, 130, 195, 0.4);
    transform: translateY(-2px);
}

.safety-inspection-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--auto-blue), var(--grass-green));
    border-radius: 16px 16px 0 0;
}

.safety-inspection-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.safety-inspection-content {
    flex: 1;
}

.safety-inspection-title {
    color: var(--auto-blue);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.safety-inspection-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.safety-inspection-text strong {
    color: var(--auto-blue);
    font-weight: 600;
}

/* Responsive styles for Pre-Safety Inspection Section */
@media (max-width: 768px) {
    .safety-inspection-section {
        padding: 40px 0;
    }

    .safety-inspection-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .safety-inspection-icon {
        font-size: 3rem;
    }

    .safety-inspection-title {
        font-size: 1.4rem;
    }

    .safety-inspection-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .safety-inspection-box {
        padding: 25px 20px;
    }

    .safety-inspection-icon {
        font-size: 2.5rem;
    }

    .safety-inspection-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .safety-inspection-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Special Features Section */
.features-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-highlight {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--auto-blue), var(--orange));
    opacity: 0;
    transition: var(--transition);
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-highlight:hover::before {
    opacity: 1;
}

.feature-highlight .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.feature-highlight:hover .feature-icon {
    transform: scale(1.1);
}

.feature-highlight h3 {
    color: var(--auto-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-highlight p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.mechanical-cta {
    background: linear-gradient(135deg, var(--auto-blue) 0%, var(--orange) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mechanical-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    color: var(--gray-700);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-weight: 500;
}

.cta-feature .cta-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-action {
    text-align: center;
}

.cta-action .btn-large {
    font-size: 1.3rem;
    padding: 18px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--auto-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-action .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--gray-50);
}

.cta-action .btn-icon {
    font-size: 1.5rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Mechanical Info Section */
.mechanical-info {
    background: var(--white);
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mechanical-about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .mechanical-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-highlight {
        padding: 30px 20px;
    }

    .feature-highlight .feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .feature-highlight h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1.1rem;
    }

    .cta-features {
        justify-content: center;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mechanical-hero .hero-content {
        padding: 0 20px;
        min-height: 70vh;
    }

    .mechanical-hero .hero-card {
        padding: 40px 30px;
        margin: 20px 0;
        border-radius: 16px;
    }

    .mechanical-hero .hero-buttons {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 479px) {
    .mechanical-hero .hero-content {
        padding: 0 15px;
        min-height: 70vh;
    }

    .mechanical-hero .hero-card {
        padding: 30px 20px;
        margin: 15px 0;
        border-radius: 12px;
    }

    .mechanical-hero .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        margin-bottom: 15px;
    }

    .mechanical-hero .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .mechanical-hero .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        width: 100%;
    }

    .mechanical-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .feature-highlight {
        padding: 25px 15px;
    }

    .feature-highlight .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature-highlight h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-highlight p {
        font-size: 0.9rem;
    }

    .mechanical-stats .stat {
        padding: 25px 15px;
    }

    .mechanical-stats .stat-number {
        font-size: 2rem;
    }

    .mechanical-stats .stat-label {
        font-size: 0.9rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-action .btn-large {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

/* Tablet specific styles */
@media (max-width: 1024px) and (min-width: 768px) {
    .mechanical-about .about-image {
        --width: 200px;
        margin: 10px auto;
        max-width: 100%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mechanical-about .polaroid__wrapper {
        --width: 200px;
        --rotation: -1deg;
        transform: rotate(var(--rotation, -1deg)) scale(var(--scale, 1));
        max-width: 100%;
        width: 100%;
    }

    .mechanical-about .polaroid {
        box-shadow: 2px 2px 1px var(--gray-300);
        max-width: 100%;
    }
}

/* Common mobile styles for all mobile breakpoints */
@media (max-width: 767px) {
    .mechanical-about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .mechanical-about .about-image {
        --width: 220px;
        margin: 15px auto;
        max-width: 100%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mechanical-about .about-image:hover {
        transform: none;
    }

    .mechanical-about .polaroid__wrapper {
        --width: 220px;
        --rotation: -2deg;
        transform: rotate(var(--rotation, -2deg)) scale(var(--scale, 1));
        max-width: 100%;
        width: 100%;
    }

    .mechanical-about .polaroid {
        box-shadow: 3px 3px 1px var(--gray-300);
        max-width: 100%;
    }

    .mechanical-about .polaroid__shadow {
        display: block;
        opacity: 0.2;
        filter: blur(5px);
        transform: translate(10%, 10%) scale(1);
    }

    .mechanical-about .polaroid__wrapper:active {
        --rotation: 0deg;
        --scale: 0.9;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    right: clamp(16px, 2vw, 32px);
    bottom: clamp(16px, 2vw, 32px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: rgba(44, 85, 48, 0.60);
    color: #fff;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(2, 2, 2, 0.5);
    backdrop-filter: blur(6px);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.floating-cta:hover,
.floating-cta:focus-visible {
    background: rgba(44, 85, 48, 1);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.floating-cta:focus-visible {
    outline: 3px solid rgba(107, 222, 98, 0.3);
    outline-offset: 4px;
}

@media (max-width: 600px) {
    .floating-cta {
        max-width: 50%;
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
        text-align: right;
        border-radius: 12px;
        font-size: 0.75rem;
    }
}

/* Floating CTA Modal */
.cta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cta-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cta-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    margin: 0 auto;
}

.cta-modal.active {
    transform: translateY(0);
}

.cta-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.cta-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0;
}

.cta-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
    border-radius: 4px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-modal-close:hover {
    color: #2c5530;
    background: #f0f0f0;
}

.cta-modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-modal-btn-call {
    background: #2c5530;
    color: #fff;
}

.cta-modal-btn-call:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-modal-btn-email {
    background: #f0f8f0;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.cta-modal-btn-email:hover {
    background: #2c5530;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-modal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.cta-modal-phone-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-modal-phone-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.cta-modal-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    letter-spacing: 0.5px;
}

.cta-modal-email-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-modal-email-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-modal-email-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-modal-email-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.cta-modal-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: #2c5530;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    white-space: nowrap;
}

.cta-modal-copy-btn:hover {
    background: #1e3a21;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.cta-modal-copy-btn:active {
    transform: translateY(0);
}

.cta-modal-copy-btn.copied {
    background: #4caf50;
}

.cta-modal-copy-btn .copy-icon {
    font-size: 1rem;
}

.cta-modal-copy-btn .copy-text {
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .cta-modal {
        border-radius: 20px 20px 0 0;
        padding: 24px 20px;
    }

    .cta-modal-title {
        font-size: 1.25rem;
    }

    .cta-modal-btn {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .cta-modal-phone-number {
        font-size: 1.25rem;
    }

    .cta-modal-email-address {
        font-size: 1rem;
    }

    .cta-modal-email-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .cta-modal-copy-btn {
        width: 100%;
        padding: 10px 16px;
    }
}