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

:root {
    --primary-color: #FF3B30;
    --secondary-color: #34C759;
    --dark: #1C1C1E;
    --gray: #8E8E93;
    --light-gray: #F2F2F7;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: visible;
    margin-bottom: 50px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

/* Title Block Overlapping Image */
.title-block {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 85%;
    max-width: 320px;
    z-index: 10;
    border: 1px solid rgba(255, 59, 48, 0.08);
    backdrop-filter: blur(10px);
    animation: slideUp 0.6s ease-out 0.3s both;
    transition: all 0.3s ease;
}

/* Mobile Fixed Header */
.mobile-fixed-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255, 59, 48, 0.08);
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

.mobile-fixed-header.show {
    transform: translateY(0);
}

.fixed-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    max-width: 100%;
}

.fixed-header-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fixed-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.fixed-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    opacity: 0.8;
}

.fixed-call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
    transition: all 0.3s ease;
}

.fixed-call-btn:active {
    transform: scale(0.95);
}

.fixed-call-btn span {
    display: inline-block;
}

/* Phone icon animation */
@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-25deg);
    }
    20%, 40% {
        transform: rotate(25deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.fixed-call-btn svg {
    animation: phoneRing 2s ease-in-out infinite;
    transform-origin: center;
}

/* Mobile Floating Call Button */
.mobile-floating-call-btn {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4), 0 8px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.5), 0 10px 35px rgba(0,0,0,0.2);
}

.mobile-floating-call-btn:active {
    transform: scale(0.95);
}

.mobile-floating-call-btn svg {
    animation: phoneRing 2s ease-in-out infinite;
    transform-origin: center;
}

/* Pulse animation for floating button */
@keyframes pulseCall {
    0% {
        box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4), 0 8px 30px rgba(0,0,0,0.15);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 59, 48, 0.6), 0 8px 35px rgba(0,0,0,0.2), 0 0 0 15px rgba(255, 59, 48, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4), 0 8px 30px rgba(0,0,0,0.15), 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.mobile-floating-call-btn {
    animation: pulseCall 3s ease-in-out infinite;
}

/* Show only on mobile */
@media (max-width: 767px) {
    .mobile-fixed-header {
        display: block;
    }
    
    body.has-fixed-header {
        padding-top: 70px;
    }
    
    .mobile-floating-call-btn {
        display: flex;
    }
}

/* Call button in title block - hidden by default */
.sticky-call-btn {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    gap: 6px;
}

.sticky-call-btn:hover {
    background: #E5342A;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
}

/* Sticky title block for mobile */
@media (max-width: 767px) {
    .title-block.sticky {
        position: fixed !important;
        top: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 0 16px 16px;
        padding: 12px 15px 12px 20px;
        animation: slideDown 0.3s ease-out;
        z-index: 9999 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transform: translateY(0) !important;
        margin: 0 !important;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    }
    
    .title-block.sticky .hero-title {
        font-size: 18px;
        margin: 0;
        flex: 1;
        animation: none !important;
    }
    
    .title-block.sticky .hero-title .highlight {
        font-size: 18px;
    }
    
    .title-block.sticky .hero-title .highlight::after {
        display: none;
    }
    
    .title-block.sticky .hero-title .subtitle-line {
        font-size: 13px;
        margin-top: 2px;
    }
    
    .title-block.sticky .sticky-call-btn {
        display: flex;
        position: static;
        transform: none;
    }
    
    body.has-sticky-header {
        transition: padding-top 0.3s ease;
    }
    
    /* Prevent content jump */
    body.has-sticky-header .hero-banner {
        margin-bottom: 80px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Additional mobile fixes for sticky header */
@media (max-width: 767px) {
    html {
        scroll-behavior: smooth;
    }
    
    .hero-banner {
        position: relative;
    }
    
    /* Ensure sticky header stays on top */
    .title-block.sticky {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
}

.title-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 59, 48, 0.05) 100%);
    border-radius: 16px;
    z-index: -1;
}

.title-block .hero-title {
    margin-bottom: 0;
    animation: none;
    padding: 0;
}

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

.emergency-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    animation: slideDown 0.5s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero .container {
    padding: 30px 20px 60px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--dark);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    font-size: 24px;
}

.hero-title .subtitle-line {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-top: 4px;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.2;
}

.hero-subtitle-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px auto 30px;
    max-width: 700px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 59, 48, 0.06);
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-subtitle-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.2), transparent);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.subtitle-highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.subtitle-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B60);
    opacity: 0.3;
}

.hero-subtitle strong {
    color: var(--secondary-color);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.05) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

@media (min-width: 768px) {
    .hero-subtitle-wrapper {
        padding: 25px 35px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.8;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    padding: 0 5px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 5px;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.05) 0%, rgba(52, 199, 89, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(52, 199, 89, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 199, 89, 0.15);
}

.feature-item svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    display: block;
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
    width: 100%;
}

/* Compact Rating Card */
.rating-card-compact {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    max-width: 350px;
    margin: 0 auto 5px;
    width: 100%;
    transition: all 0.3s ease;
}

.rating-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.rating-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-card-compact .stars {
    color: #FFB800;
    font-size: 16px;
    letter-spacing: 1px;
}

.rating-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rating-info .score {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.rating-info .reviews {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 199, 89, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.rating-badge svg {
    width: 14px;
    height: 14px;
}

.rating-badge span {
    font-size: 12px;
    color: #34C759;
    font-weight: 600;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(255, 59, 48, 0.35);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.btn-primary:hover::before {
    left: 100%;
}

.phone-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-phone 2s infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes pulse-phone {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    }
}

.btn-primary span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-primary span strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E5342A 0%, #FF3B30 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 59, 48, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover .phone-icon-wrapper {
    animation: ring-phone 0.5s ease-in-out;
}

@keyframes ring-phone {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-25deg); }
    20%, 40% { transform: rotate(25deg); }
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--dark);
    padding: 16px 30px;
    border: 2px solid var(--dark);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: none !important;
    }
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-24-7 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
    z-index: 1;
}

.badge-24-7 .small {
    font-size: 10px;
    font-weight: 500;
    margin-top: 2px;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-banner {
        height: 350px;
    }
    
    .hero .container {
        padding: 90px 20px 80px;
    }
    
    .title-block {
        bottom: -45px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 20px 35px;
        width: 70%;
        max-width: 480px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .highlight {
        font-size: 36px;
    }
    
    .hero-title .subtitle-line {
        font-size: 22px;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .feature-item {
        padding: 20px 10px;
    }
    
    .feature-item svg {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    
    .cta-group {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-secondary {
        padding: 18px 32px;
        font-size: 18px;
    }
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
}

.location-search {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    margin-bottom: 30px;
}

.input-group {
    display: block;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.btn-search {
    width: 100%;
    padding: 16px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #E5342A;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 59, 48, 0.3);
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* User Pin */
.user-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.pin-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    animation: pulse-ring 2s infinite;
    top: -15px;
    left: -15px;
}

.pin-dot {
    width: 10px;
    height: 10px;
    background: #3B82F6;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
}

.pin-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Locksmith Pins */
.locksmith-pin {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.locksmith-pin:hover {
    transform: scale(1.1);
    z-index: 15;
}

.pin-marker {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 5px;
}

.pin-marker img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.pin-info {
    background: white;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.pin-info .time {
    font-weight: 700;
    color: var(--primary-color);
}

.pin-info .distance {
    color: var(--gray);
    font-size: 11px;
}

/* Results Info */
.results-info {
    margin-top: 20px;
}

.results-card {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.05) 0%, rgba(52, 199, 89, 0.02) 100%);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.results-text {
    display: flex;
    flex-direction: column;
}

.results-text strong {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.results-text span {
    font-size: 14px;
    color: var(--gray);
}

/* Locksmith Cards */
.locksmith-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .locksmith-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.locksmith-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    display: none; /* Hidden by default */
    position: relative;
    backdrop-filter: blur(10px);
}

.locksmith-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF3B30 0%, #FF6B60 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.locksmith-card:hover::before {
    opacity: 1;
}

.locksmith-card[style*="display: block"] {
    display: block !important;
}

.locksmith-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    border-color: rgba(255, 59, 48, 0.15);
}

/* We Recommend Badge */
.card-recommended {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #34C759 0%, #30B251 100%);
    color: white;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
}

.card-recommended svg {
    width: 18px;
    height: 18px;
    animation: pulse 2s infinite;
}

/* First card with recommendation */
#card1 {
    border: 2px solid rgba(52, 199, 89, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    box-shadow: 0 8px 28px rgba(52, 199, 89, 0.12);
    position: relative;
    overflow: visible;
}

#card1::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.2) 0%, transparent 50%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

#card1:hover {
    box-shadow: 0 12px 40px rgba(52, 199, 89, 0.2);
    transform: translateY(-10px) scale(1.03);
}

#card1 .card-image {
    margin-top: 40px; /* Space for recommended badge */
}

.card-image {
    position: relative;
    height: 140px;
    background-image: url('../img/map1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
}

.card-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.locksmith-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-badge.fastest {
    background: linear-gradient(135deg, #FF3B30 0%, #FF6B60 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(255, 59, 48, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 59, 48, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 59, 48, 0.6);
    }
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.card-location {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    min-height: 20px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08) 0%, rgba(255, 184, 0, 0.03) 100%);
    border-radius: 8px;
    width: fit-content;
}

.card-rating .stars {
    color: #FFB800;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(255, 184, 0, 0.3);
    letter-spacing: 2px;
}

.card-rating span:last-child {
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.card-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05) 0%, rgba(255, 59, 48, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 59, 48, 0.08);
    transition: all 0.3s ease;
}

.locksmith-card:hover .card-info {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.08) 0%, rgba(255, 59, 48, 0.03) 100%);
    border-color: rgba(255, 59, 48, 0.12);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item span {
    font-size: 14px;
    font-weight: 600;
}

.info-item .time {
    color: var(--primary-color);
}

.info-item .distance {
    color: var(--gray);
}

.card-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.card-btn::before {
    content: '📞';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: ring 2s infinite;
}

.card-btn:hover {
    background: linear-gradient(135deg, #E5342A 0%, #FF3B30 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.35);
}

@keyframes ring {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    10%, 30% { transform: translateY(-50%) rotate(-15deg); }
    20%, 40% { transform: translateY(-50%) rotate(15deg); }
}

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

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.2), transparent);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 59, 48, 0.05) 100%);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B60);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    opacity: 0.5;
}

.service-icon-wrapper {
    position: absolute;
    top: 150px;
    right: 20px;
    z-index: 2;
}

.service-card h3 {
    padding: 50px 30px 12px 30px;
}

.service-card p {
    padding: 0 30px;
    margin-bottom: 20px;
}

.service-btn {
    margin: 20px 30px 30px;
    width: calc(100% - 60px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-icon.emergency {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 59, 48, 0.05) 100%);
    color: #FF3B30;
}

.service-icon.install {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.05) 100%);
    color: #34C759;
}

.service-icon.safe {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0.05) 100%);
    color: #007AFF;
}

.service-icon.smart {
    background: linear-gradient(135deg, rgba(175, 82, 222, 0.1) 0%, rgba(175, 82, 222, 0.05) 100%);
    color: #AF52DE;
}

.service-icon.commercial {
    background: linear-gradient(135deg, rgba(255, 159, 10, 0.1) 0%, rgba(255, 159, 10, 0.05) 100%);
    color: #FF9F0A;
}

.service-icon.rekey {
    background: linear-gradient(135deg, rgba(48, 209, 88, 0.1) 0%, rgba(48, 209, 88, 0.05) 100%);
    color: #30D158;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0 30px;
    margin: 0 0 20px 0;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
    background: rgba(52, 199, 89, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF5147 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.2);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.3);
}

.service-card:nth-child(1) .service-btn {
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
}

.service-card:nth-child(2) .service-btn {
    background: linear-gradient(135deg, #34C759 0%, #30B251 100%);
}

.service-card:nth-child(3) .service-btn {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
}

.service-card:nth-child(4) .service-btn {
    background: linear-gradient(135deg, #AF52DE 0%, #8E3CBC 100%);
}

.service-card:nth-child(5) .service-btn {
    background: linear-gradient(135deg, #FF9F0A 0%, #FF8800 100%);
}

.service-card:nth-child(6) .service-btn {
    background: linear-gradient(135deg, #30D158 0%, #28B94C 100%);
}

/* CTA Banner */
.services-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(255, 59, 48, 0.3);
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .services-cta {
        flex-direction: row;
        text-align: left;
    }
}

.cta-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-button svg path {
    fill: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f6fa 100%);
    position: relative;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

@media (min-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
        align-items: center;
    }
}

/* Team Section */
.team-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Team Image */
.team-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Hide floating badges */
.experience-badge,
.customers-badge {
    display: none;
}

/* New badges row under image */
.team-badges-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.badge-item {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.badge-item.experience {
    border-color: rgba(255, 59, 48, 0.2);
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05) 0%, rgba(255, 59, 48, 0.02) 100%);
}

.badge-item.customers {
    border-color: rgba(52, 199, 89, 0.2);
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.05) 0%, rgba(52, 199, 89, 0.02) 100%);
}

.badge-item.rating {
    border-color: rgba(255, 184, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.05) 0%, rgba(255, 184, 0, 0.02) 100%);
}

.badge-number {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.badge-item.experience .badge-number {
    color: var(--primary-color);
}

.badge-item.customers .badge-number {
    color: var(--secondary-color);
}

.badge-item.rating .badge-number {
    color: #FFB800;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.trust-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.trust-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.08) 0%, rgba(255, 59, 48, 0.03) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.trust-item:nth-child(even) .trust-icon {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.08) 0%, rgba(52, 199, 89, 0.03) 100%);
    color: var(--secondary-color);
}

.trust-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.trust-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 59, 48, 0.25);
}

@media (min-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.95;
}

/* Before & After Section */
.before-after-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.before-after-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.before-after-gallery {
    margin: 60px 0 40px;
}

.before-after-item {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.before-after-item.active {
    display: block;
}

.ba-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.ba-images {
    position: relative;
    background: #f5f5f5;
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    z-index: 1;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.before-label {
    left: 20px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.after-label {
    right: 20px;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 5;
    cursor: ew-resize;
    touch-action: none;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ba-slider:hover .ba-slider-handle {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-info {
    padding: 40px;
}

.ba-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.ba-details {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.ba-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.ba-detail-item svg {
    flex-shrink: 0;
}

.ba-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.ba-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ba-tag {
    padding: 6px 14px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.ba-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.ba-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ba-nav-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.2);
}

.ba-nav-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.3);
}

.ba-nav-number {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 4px;
}

.ba-nav-btn.active .ba-nav-number {
    opacity: 0.8;
}

.ba-nav-title {
    font-size: 14px;
    font-weight: 600;
}

.ba-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.05) 0%, rgba(255, 59, 48, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.ba-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.ba-trust-item svg {
    flex-shrink: 0;
}

/* Mobile styles for Before & After */
@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }
    
    .ba-image-wrapper {
        height: 300px;
    }
    
    .ba-info {
        padding: 30px 20px;
    }
    
    .ba-info h3 {
        font-size: 20px;
    }
    
    .ba-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .ba-selector {
        flex-direction: column;
        gap: 15px;
    }
    
    .ba-nav-btn {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
    }
    
    .ba-trust-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ba-label {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .before-label {
        left: 10px;
    }
    
    .after-label {
        right: 10px;
    }
    
    .ba-slider-handle {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .ba-image-wrapper {
        height: 250px;
    }
    
    .ba-trust-item {
        font-size: 13px;
    }
    
    .ba-tags {
        gap: 8px;
    }
    
    .ba-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Discount Section - Simplified */
.discount-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.discount-card-simple {
    background: white;
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #FF3B30;
}

.discount-content-full {
    text-align: center;
}

.discount-card-simple .discount-timer-bar {
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 107, 96, 0.1) 100%);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.discount-card-simple .timer-label {
    font-size: 16px;
    font-weight: 600;
    color: #FF3B30;
}

.discount-card-simple .timer-compact {
    display: flex;
    gap: 10px;
}

.discount-card-simple .discount-title-compact {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.discount-card-simple .promo-features {
    margin: 25px auto;
    max-width: 500px;
}

.discount-card-simple .discount-btn-compact {
    padding: 16px 40px;
    font-size: 18px;
    margin-top: 20px;
}

.discount-card-compact {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 0 60px rgba(255, 59, 48, 0.05);
    overflow: hidden;
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 59, 48, 0.1);
    height: 320px;
    position: relative;
    transition: all 0.3s ease;
}

.discount-card-compact:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12), 0 0 80px rgba(255, 59, 48, 0.08);
    transform: translateY(-2px);
}

.discount-image-side {
    position: relative;
    width: 350px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-right: 1px solid #e0e0e0;
}

.discount-image-side img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Removed overlay to show photo clearly */

.discount-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 3;
    pointer-events: none;
}

.discount-image-side::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    z-index: 4;
    pointer-events: none;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
    pointer-events: none;
    z-index: 5;
}

.discount-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    filter: brightness(1.05) contrast(1.1);
    transition: transform 0.3s ease;
}

.discount-card-compact:hover .discount-image-side img {
    transform: scale(1.08);
}

/* Removed old badge styles - now using price-display */

.discount-content-side {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.discount-timer-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 16px;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    white-space: nowrap;
}

.timer-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.timer-compact {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.timer-unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.timer-unit span {
    font-weight: 800;
}

.discount-title-compact {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.promo-code-box {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.08) 0%, rgba(255, 59, 48, 0.03) 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px dashed rgba(255, 59, 48, 0.3);
}

.promo-code-label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.promo-code-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-code-display .code-text {
    flex: 1;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    letter-spacing: 2px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    text-align: center;
}

.promo-code-display .copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-code-display .copy-btn:hover {
    background: #E63428;
    transform: translateY(-1px);
}

.promo-code-display .copy-btn:active {
    transform: translateY(0);
}

.service-call-notice {
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 20px 0 15px 0;
    font-size: 13px;
    color: #E65100;
    line-height: 1.5;
}

.service-call-notice strong {
    color: #BF360C;
}

.promo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.promo-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.promo-code-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 8px 12px;
}

.promo-code-compact .code-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.copy-btn-compact {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-compact:hover {
    transform: scale(1.1);
}

.discount-note {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.discount-btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5147 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.25);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.discount-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.35);
}

/* Price Display for Promo */
.price-display {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    text-align: center;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5544 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.5);
    border: 3px solid white;
    animation: pulse 3s infinite;
}

.price-slash {
    display: none;
}

.old-price {
    display: none;
}

.new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.dollar-sign {
    font-size: 14px;
    margin-right: 1px;
    margin-top: 2px;
}

.price-number {
    font-size: 28px;
    line-height: 1;
}

.save-badge {
    background: white;
    color: #FF3B30;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    margin-top: 2px;
}

.visual-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.key-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
}

.lock-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: rotate(-15deg);
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
}

.promo-feature svg {
    flex-shrink: 0;
}

/* Animation for pulse effect */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsive for Discount Section */
@media (max-width: 768px) {
    .discount-section {
        padding: 20px 0;
    }
    
    .discount-card-simple {
        padding: 20px;
        margin: 0 15px;
    }
    
    .discount-card-simple .discount-title-compact {
        font-size: 22px;
    }
    
    .discount-card-simple .timer-compact {
        gap: 8px;
    }
    
    .discount-card-simple .discount-btn-compact {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .discount-card-compact {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }
    
    .discount-image-side {
        width: 100%;
        height: 180px;
        padding: 0;
    }
    
    .discount-image-side img {
        width: 100%;
        height: 100%;
    }
    
    .price-display {
        width: 65px;
        height: 65px;
        top: 10px;
        right: 10px;
    }
    
    .price-number {
        font-size: 22px;
    }
    
    .dollar-sign {
        font-size: 12px;
    }
    
    .save-badge {
        font-size: 8px;
        padding: 1px 4px;
    }
    
    .promo-features {
        gap: 8px;
    }
    
    .promo-feature {
        font-size: 14px;
    }
    
    .discount-content-side {
        padding: 25px 20px;
    }
    
    .discount-title-compact {
        font-size: 20px;
    }
    
    .timer-compact {
        gap: 4px;
        flex-wrap: nowrap;
    }
    
    .timer-unit {
        font-size: 13px;
    }
    
    .discount-timer-bar {
        gap: 8px;
        padding: 8px 12px;
    }
    
    .timer-label {
        font-size: 11px;
    }
    
    .promo-code-box {
        padding: 12px;
    }
    
    .promo-code-display {
        flex-direction: column;
        gap: 8px;
    }
    
    .promo-code-display .code-text {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .promo-code-display .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .promo-code-compact .code-text {
        font-size: 16px;
    }
    
    .discount-btn-compact {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .discount-image-side {
        height: 160px;
    }
    
    .price-number {
        font-size: 36px;
    }
    
    .dollar-sign {
        font-size: 18px;
    }
    
    .old-price {
        font-size: 18px;
    }
    
    .key-icon,
    .lock-icon {
        opacity: 0.1;
    }
    
    .discount-title-compact {
        font-size: 18px;
    }
    
    .promo-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .promo-code-compact {
        width: 100%;
        justify-content: space-between;
    }
}

/* Customer Satisfaction Section */
.satisfaction-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.satisfaction-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.05) 0%, transparent 70%);
    transform: translateY(-50%);
}

.satisfaction-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.satisfaction-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    align-items: center;
}

.satisfaction-image {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.satisfaction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.satisfaction-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #34C759 0%, #30B855 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.invoice-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 2px solid #FF3B30;
    transform: rotate(3deg);
}

.invoice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.invoice-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.invoice-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.invoice-price strong {
    font-size: 24px;
    color: #FF3B30;
    font-weight: 800;
}

.invoice-saved {
    background: #34C759;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.satisfaction-text {
    padding: 50px;
}

.quote-icon {
    margin-bottom: 20px;
}

.satisfaction-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.satisfaction-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.customer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
}

.customer-details strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.customer-details span {
    font-size: 14px;
    color: var(--gray);
}

.service-details {
    display: flex;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dark);
}

.trust-indicators {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.trust-indicators .trust-item {
    text-align: center;
}

.trust-indicators .trust-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.trust-indicators .trust-item span {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-indicators .trust-item small {
    display: block;
    font-size: 10px;
    color: #34C759;
    font-weight: 600;
    margin-top: 2px;
}

.trust-indicators .trust-item.special-offer {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05) 0%, rgba(255, 59, 48, 0.02) 100%);
    border: 2px solid rgba(255, 59, 48, 0.2);
}

.trust-indicators .trust-item.special-offer strong {
    color: #FF3B30;
    font-size: 32px;
}

.trust-indicators .trust-item.special-offer::before {
    content: '10% OFF';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #34C759;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    transform: rotate(10deg);
}

.cta-wrapper {
    text-align: center;
}

.satisfaction-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5147 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.3);
    transition: all 0.3s ease;
}

.satisfaction-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 59, 48, 0.4);
}

.urgency-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .satisfaction-content {
        grid-template-columns: 1fr;
    }
    
    .satisfaction-image {
        height: 300px;
    }
    
    .satisfaction-text {
        padding: 40px 30px;
    }
    
    .satisfaction-title {
        font-size: 26px;
    }
    
    .satisfaction-quote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .satisfaction-section {
        padding: 60px 0;
    }
    
    .satisfaction-image {
        height: 250px;
    }
    
    .satisfaction-text {
        padding: 30px 20px;
    }
    
    .customer-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .service-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .satisfaction-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .satisfaction-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .invoice-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        transform: rotate(2deg);
    }
    
    .invoice-price strong {
        font-size: 20px;
    }
    
    .invoice-label {
        font-size: 10px;
    }
    
    .trust-indicators .trust-item strong {
        font-size: 22px;
    }
    
    .trust-indicators .trust-item.special-offer strong {
        font-size: 26px;
    }
    
    .satisfaction-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Pricing Transparency Section */
.pricing-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.pricing-summary {
    margin-bottom: 20px;
}

.pricing-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.price-badge {
    background: linear-gradient(135deg, #FF3B30 0%, #ff5147 100%);
    color: white;
    font-size: 28px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 10px;
}

.price-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.price-text small {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.pricing-note {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.pricing-toggle {
    background: none;
    border: 2px solid #FF3B30;
    color: #FF3B30;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pricing-toggle:hover {
    background: #FF3B30;
    color: white;
}

.pricing-toggle.active {
    background: #FF3B30;
    color: white;
}

.pricing-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.pricing-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.pricing-details.show {
    max-height: 1500px;
    padding-top: 30px;
}

.pricing-content {
    display: grid;
    gap: 30px;
}

.pricing-explanation h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list > li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-list > li:last-child {
    border-bottom: none;
}

.pricing-sublist {
    list-style: none;
    padding: 10px 0 0 20px;
    margin: 0;
}

.pricing-sublist li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.pricing-sublist li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF3B30;
}

.pricing-factors h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.factor-item {
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.factor-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.factor-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.factor-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.pricing-important {
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.pricing-important p {
    margin: 0;
    font-size: 14px;
    color: #E65100;
    line-height: 1.6;
}

.pricing-important strong {
    color: #BF360C;
}

.pricing-disclaimer {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #34C759;
    margin: 0;
    font-size: 14px;
    color: #666;
}

.pricing-disclaimer strong {
    color: var(--dark);
}

.pricing-guarantee {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.05) 0%, rgba(52, 199, 89, 0.02) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.guarantee-items {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-container {
        padding: 20px;
        border-radius: 0;
    }
    
    .pricing-title {
        font-size: 20px;
    }
    
    .price-badge {
        font-size: 24px;
        padding: 6px 12px;
    }
    
    .price-text {
        font-size: 16px;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 12px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .factor-item {
        padding: 15px;
    }
    
    .factor-icon {
        width: 40px;
        height: 40px;
    }
    
    .pricing-important {
        padding: 12px;
    }
    
    .pricing-important p {
        font-size: 13px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding-top: 60px;
    position: relative;
}

.footer-content {
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: #FF3B30;
}

.info-item address {
    font-style: normal;
    line-height: 1.6;
    font-size: 14px;
}

.info-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #FF3B30;
}

.availability {
    font-size: 12px;
    color: #34C759;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    font-size: 14px;
    line-height: 1.5;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF3B30;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legal li {
    font-size: 13px;
    padding-left: 20px;
    position: relative;
}

.footer-legal li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34C759;
}

.payment-methods {
    margin-top: 20px;
}

.payment-label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #999;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-text {
    font-size: 14px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.legal-text {
    font-size: 12px;
    color: #999;
    max-width: 600px;
    line-height: 1.5;
}

.footer-links-bottom {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links-bottom a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #FF3B30;
}

.separator {
    color: #666;
}

.footer-emergency {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 59, 48, 0.05) 100%);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-emergency span {
    font-size: 14px;
    font-weight: 600;
}

.footer-emergency a {
    color: #FF3B30;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-emergency {
        flex-direction: column;
        text-align: center;
    }
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.2), transparent);
}

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

.reviews-section .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 59, 48, 0.05) 100%);
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.reviews-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.reviews-section .section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

/* Reviews Stats */
.reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 0 auto;
}

.reviews-stats .stat-item {
    text-align: center;
}

.reviews-stats .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.reviews-stats .stat-stars {
    color: #FFB800;
    font-size: 16px;
    letter-spacing: 2px;
}

.reviews-stats .stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Reviews Container - Grid Layout */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hidden Reviews */
.hidden-reviews {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.hidden-reviews.show {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
}

/* Show More Button */
.reviews-button-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
    position: relative;
    overflow: hidden;
}

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

.show-more-btn:hover::before {
    left: 100%;
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 59, 48, 0.4);
}

.show-more-btn:active {
    transform: translateY(-1px);
}

.show-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.reviews-counter {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item.active {
    box-shadow: 0 5px 25px rgba(255, 59, 48, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: #fff5f4;
    color: #FF3B30;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF6B60 100%);
    border-radius: 20px;
}

.faq-cta-text {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #FF3B30;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta-text {
        font-size: 18px;
    }
    
    .faq-cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 59, 48, 0.08);
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: rgba(255, 59, 48, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5147 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.25);
}

.reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 2px 0;
}

.review-stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Mobile Optimized */
@media (max-width: 767px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-section .section-title {
        font-size: 28px;
    }
    
    .reviews-section .section-subtitle {
        font-size: 16px;
    }
    
    .reviews-stats {
        gap: 20px;
        padding: 15px;
        border-radius: 40px;
    }
    
    .reviews-stats .stat-value {
        font-size: 20px;
    }
    
    .reviews-stats .stat-label {
        font-size: 11px;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .hidden-reviews {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-card::before {
        font-size: 40px;
        top: 5px;
        right: 15px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .show-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .reviews-counter {
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-banner {
        height: 450px;
    }
    
    .title-block {
        bottom: -50px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 25px 45px;
        width: 55%;
        max-width: 550px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-title .highlight {
        font-size: 42px;
    }
    
    .hero-title .subtitle-line {
        font-size: 26px;
    }
    
    
    .feature-item {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 20px 40px;
        font-size: 20px;
    }
    
    .btn-secondary {
        padding: 20px 40px;
    }
}

/* Forms Section Styles */
.forms {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.forms__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.forms__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

.forms__box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.forms__button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5147 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.forms__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
    background: linear-gradient(135deg, #ff5147 0%, var(--primary-color) 100%);
}

.forms__button:active {
    transform: translateY(0);
}

/* Success message */
#jq_success {
    padding: 15px;
    background: rgba(52, 199, 89, 0.1);
    border-radius: 10px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

/* Bootstrap utility classes */
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forms {
        padding: 60px 0;
    }
    
    .forms__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .forms__box {
        padding: 30px 20px;
    }
    
    .forms__button {
        width: 100%;
    }
}