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

body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Mobile Responsive Base Styles */
img {
    max-width: 100%;
    height: auto;
}

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

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Prevent Horizontal Overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
}

section {
    overflow-x: hidden;
}

/* === HERO SECTION === */
.hero-section {
    background-color: #f5f5f5;
    padding: 40px 20px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.hero-left {
    flex: 1;
    max-width: 300px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-title2 {
    font-size: 38px;
    font-weight: 700;
    color: #9e9e9e;
    line-height: 1.2;
    padding-left: 15px;
    margin-bottom: 30px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #ffffff;
    border: solid 4px #25D366;
    color: rgb(0, 0, 0);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    padding: 0;
}

.btn-text {
    opacity: 0;
    width: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 600;
}

.btn-arrow {
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}
a:has(.arrow-btn) {
    text-decoration: none;
    display: inline-flex;
}
.arrow-btn:hover {
    width: 250px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    background-color: #25D366;
    color: #0a0a0a;
}

.arrow-btn:hover .btn-text {
    opacity: 1;
    width: auto;
    transform: translateX(0);
    padding-left: 15px;
    padding-right: 10px;
}

.arrow-btn:hover .btn-arrow {
    transform: rotate(-45deg);
}

.hero-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 250px;
}

.tyre-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(6deg);
    width: 400px;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    animation: dropBounce 1.5s ease forwards;
}

@keyframes dropBounce {
    0% {
        transform: translate(-50%, -350px) rotate(6deg);
        opacity: 0;
    }

    60% {
        transform: translate(-50%, -40%) rotate(6deg);
        opacity: 1;
    }

    75% {
        transform: translate(-50%, -55%) rotate(6deg);
    }

    90% {
        transform: translate(-50%, -48%) rotate(6deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(6deg);
    }
}

.crosshair-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.hero-right {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

.hr-txt {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-weight: 300;
}

/* === GREEN BANNER SECTION === */
.green-banner {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    border-radius: 30px;
    padding: 60px 0px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 1400px;
    text-align: center;
    overflow: hidden;
}

.banner-title {
    font-size: 54px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
    white-space: nowrap;
    display: inline-block;
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

.banner-subtitle {
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
}

/* === SEARCH CONTAINER === */
.search-container {
    max-width: 500px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    width: 55px;
    height: 55px;
    color: black;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    background-color: #25D366;
    border: solid 4px white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

/* === BRAND LOGOS === */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.brand-item i {
    font-size: 18px;
}

.brand-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* === 4 STEPS SECTION === */
.steps-section {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

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

.steps-subtitle {
    color: #25D366;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.steps-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.steps-highlight {
    color: #25D366;
}

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

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-green {
    background: linear-gradient(135deg, #b8e6a1 0%, #8fd974 100%);
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.step-green .step-icon-wrapper {
    background: rgba(255, 255, 255, 0.7);
}

.step-icon {
    width: 160px;
    height: 160px;
    object-fit: fill;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-green .step-title,
.step-green .step-description {
    color: #1a5a00;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-subtitle {
    color: #25D366;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.services-highlight {
    color: #25D366;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 250px;
    grid-column: span 2;
    text-decoration: none;
    display: block;
}

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

.service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.service-card:nth-child(5) {
    grid-column: 4 / 6;
}

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

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    padding: 15px 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-description {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* === FOOTER === */
.footer {
    background-color: #f9f9f9;
    padding: 60px 20px 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-newsletter {
    max-width: 350px;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}

.newsletter-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: #25D366;
}

.newsletter-btn {
    padding: 12px 25px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.newsletter-btn:hover {
    background: #20c05c;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #25D366;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright,
.credit {
    font-size: 13px;
    color: #999;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.social-icon:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px);
}

.template-btn {
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.template-btn:hover {
    background: white;
    color: #25D366;
}

/* === SERVICES PAGE === */
.services-hero {
    position: relative;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.services-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-green {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

.services-list-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-list-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-reverse {
    direction: ltr;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}

.service-detail-reverse .service-detail-image {
    order: 2;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

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

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

.service-detail-content {
    padding: 20px;
}

.service-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-detail-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #25D366;
    font-size: 18px;
}

.service-cta-btn {
    padding: 15px 35px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-cta-btn:hover {
    background: #20c05c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.service-coverage {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.coverage-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.coverage-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.coverage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.coverage-icon {
    font-size: 48px;
    color: #25D366;
    margin-bottom: 20px;
}

.coverage-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.coverage-item p {
    font-size: 14px;
    color: #666;
}

.services-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.services-cta-text {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: 2px solid white;
}

.cta-btn-primary {
    background: white;
    color: #25D366;
    border: 2px solid white;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #25D366;
}

/* === BOOKING PAGE === */
.booking-hero {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

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

.booking-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.booking-form-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.call-option-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.call-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.call-icon i {
    font-size: 36px;
    color: white;
}

.call-content {
    text-align: center;
}

.call-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.call-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.call-now-btn:hover {
    background: #20c05c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.booking-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.booking-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #ff4444;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

.form-input,
.form-select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: #25D366;
}

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

.form-select {
    cursor: pointer;
    background-color: white;
}

.form-help {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.form-submit-btn {
    padding: 16px 40px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: #20c05c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* === LOCATION SELECTION & MAP === */
.location-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.location-btn {
    padding: 14px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
}

.location-btn:hover {
    background: #20c05c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.location-btn.secondary {
    background: white;
    color: #25D366;
    border: 2px solid #25D366;
}

.location-btn.secondary:hover {
    background: #f0fdf4;
    border-color: #20c05c;
    color: #20c05c;
}

.location-display {
    padding: 14px 18px;
    background: #f0f7ff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-display.success {
    background: #f0fdf4;
    border-color: #25D366;
    color: #333;
}

.location-display i {
    font-size: 16px;
    color: #666;
}

.map-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 20px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.map-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.close-map-btn {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-map-btn:hover {
    background: #ff4444;
    color: white;
}

.close-map-btn i {
    font-size: 18px;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.confirm-location-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.confirm-location-btn:hover {
    background: #20c05c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}


/* ============================================
   RESPONSIVE DESIGN - SHARED
   ============================================ */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        padding: 0 30px;
        margin: 60px auto;
    }

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

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

    .hero-center {
        height: 280px;
    }

    .tyre-image {
        width: 350px;
    }

    .hr-txt {
        font-size: 16px;
    }

    .trust-text {
        font-size: 28px;
    }

    .trust-subtext {
        font-size: 16px;
    }

    .banner-title {
        font-size: 48px;
    }

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

    .green-banner {
        padding: 50px 30px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-card {
        height: 220px;
        grid-column: span 1;
    }

    .service-card:nth-child(4) {
        grid-column: span 1;
    }

    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .service-description {
        font-size: 12px;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .services-hero-title {
        font-size: 48px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-reverse .service-detail-content,
    .service-detail-reverse .service-detail-image {
        order: initial;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .call-option-card {
        position: static;
    }
}

/* Small Tablet/Large Mobile (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 25px;
        margin: 40px auto;
    }

    .hero-left,
    .hero-right,
    .hero-center {
        max-width: 100%;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 0;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .hero-title2 {
        font-size: 32px;
        padding-left: 0;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .arrow-btn {
        margin-top: 10px;
    }

    .hero-center {
        height: 250px;
        margin: 25px 0;
    }

    .tyre-image {
        width: 280px;
    }

    .crosshair-img {
        margin-bottom: 18px;
    }

    .hr-txt {
        font-size: 15px;
        text-align: center;
    }

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

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

    .search-container {
        max-width: 400px;
        padding: 0 20px;
    }

    .steps-section {
        padding: 60px 20px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-icon {
        width: 65px;
        height: 65px;
    }

    .steps-title {
        font-size: 28px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        height: 180px;
        grid-column: span 1;
    }

    .service-card:nth-child(4) {
        grid-column: span 1;
    }

    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .service-description {
        font-size: 11px;
        padding: 10px 15px;
    }

    .services-title {
        font-size: 28px;
    }
}

/* Mobile View (Max 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 10px 0;
    }

    .hero-container {
        padding: 0 15px;
        margin: 30px auto;
        flex-direction: column;
        gap: 25px;
    }

    .hero-left,
    .hero-right,
    .hero-center {
        max-width: 100%;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 0;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .hero-title2 {
        font-size: 28px;
        padding-left: 0;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .arrow-btn {
        margin-top: 10px;
    }

    .hero-center {
        height: 200px;
        margin: 20px 0;
    }

    .tyre-image {
        width: 220px;
    }

    .crosshair-img {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .hr-txt {
        font-size: 14px;
    }

    .green-banner {
        padding: 35px 15px;
        border-radius: 20px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .search-container {
        padding: 0 10px;
    }

    .search-input {
        padding: 15px 20px;
        font-size: 13px;
    }

    .search-btn {
        width: 50px;
        height: 50px;
    }

    .brand-logos {
        gap: 15px;
        padding: 0 10px;
    }

    .brand-item {
        font-size: 11px;
    }

    .brand-logo {
        height: 25px;
    }

    .steps-section {
        padding: 40px 15px;
    }

    .steps-header {
        margin-bottom: 40px;
    }

    .steps-subtitle {
        font-size: 12px;
    }

    .steps-title {
        font-size: 24px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .step-description {
        font-size: 13px;
    }

    .services-section {
        padding: 40px 15px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-subtitle {
        font-size: 12px;
    }

    .services-title {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        height: 200px;
        grid-column: span 1;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .service-description {
        font-size: 12px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-logo {
        height: 60px;
        max-width: 150px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .social-icons {
        justify-content: center;
    }

    .template-btn {
        width: 100%;
    }

    .location-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .location-btn {
        padding: 12px 15px;
        font-size: 13px;
    }

    .location-display {
        font-size: 13px;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .hero-center {
        height: 300px;
    }

    .tyre-image {
        width: 250px;
        transform: translate(-50%, -50%) rotate(8deg);
    }

    .services-hero {
        height: 300px;
    }

    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .services-list-section {
        padding: 60px 20px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-title {
        font-size: 26px;
    }

    .service-detail-description {
        font-size: 15px;
    }

    .service-detail-image {
        height: 250px;
    }

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

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-cta-title {
        font-size: 32px;
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .booking-hero {
        padding: 60px 20px;
    }

    .booking-hero-title {
        font-size: 36px;
    }

    .booking-hero-subtitle {
        font-size: 16px;
    }

    .booking-form-section {
        padding: 60px 20px;
    }

    .booking-form-card {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 26px;
    }

    .call-option-card {
        padding: 30px 20px;
    }

    .map-container {
        width: 95%;
        padding: 15px;
    }

    .map {
        height: 300px;
    }

    .map-header h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 28px;
    }

    .services-hero-subtitle {
        font-size: 14px;
    }

    .service-detail-title {
        font-size: 22px;
    }

    .service-detail-description {
        font-size: 14px;
    }

    .service-features li {
        font-size: 14px;
    }

    .coverage-title {
        font-size: 26px;
    }

    .coverage-item {
        padding: 30px 15px;
    }

    .coverage-icon {
        font-size: 36px;
    }

    .services-cta-title {
        font-size: 26px;
    }

    .services-cta-text {
        font-size: 16px;
    }

    .booking-hero-title {
        font-size: 28px;
    }

    .booking-hero-subtitle {
        font-size: 14px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .call-icon {
        width: 70px;
        height: 70px;
    }

    .call-icon i {
        font-size: 30px;
    }

    .call-content h3 {
        font-size: 20px;
    }

    .call-now-btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .map {
        height: 250px;
    }
}


/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.about-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-text h2 span {
    color: #3ab00a;
}

.story-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 176, 10, 0.2) 0%, transparent 100%);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3ab00a;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(58, 176, 10, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #3ab00a;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.values-section {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: rgba(58, 176, 10, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(58, 176, 10, 0.08);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3ab00a, #25D366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.about-services-highlight {
    background: linear-gradient(135deg, hsl(93, 93%, 71%) 0%, #ffffff 100%);
    padding: 60px;
    border-radius: 20px;
    color: rgb(7, 7, 7);
    text-align: center;
}


.about-services-highlight h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-services-highlight p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #25D366;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.service-item-icon {
    font-size: 28px;
}

.service-item span {
    font-size: 16px;
    font-weight: 600;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.cta-btn:hover {
    background: #1fa855;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* About Page Responsive */
@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .story-section,
    .values-section,
    .about-services-highlight {
        padding: 40px 25px;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .values-section h2,
    .about-services-highlight h2 {
        font-size: 28px;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   (Emergency Modal - only on services.html)
   ============================================ */

/* Emergency Modal Styles */
.emergency-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}

.emergency-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.emergency-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.emergency-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    z-index: 10001;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.emergency-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.emergency-modal-close:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.emergency-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.emergency-modal-icon {
    font-size: 60px;
    color: #ff6b6b;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.emergency-modal-header h2 {
    font-size: 26px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.emergency-modal-body {
    text-align: center;
}

.emergency-modal-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.emergency-modal-text strong {
    color: #3ab00a;
    font-weight: 700;
}

.emergency-modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.emergency-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 12px;
}

.emergency-feature i {
    font-size: 24px;
    color: #3ab00a;
}

.emergency-feature span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-align: center;
}

.emergency-modal-number {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.emergency-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #3ab00a 0%, #25D366 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(58, 176, 10, 0.3);
}

.emergency-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(58, 176, 10, 0.4);
}

.emergency-call-btn:active {
    transform: translateY(0);
}

.emergency-call-btn i {
    font-size: 20px;
    animation: ring 1.5s infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-15deg);
    }

    20%,
    40% {
        transform: rotate(15deg);
    }
}

/* Emergency Modal Responsive */
@media (max-width: 768px) {
    .emergency-modal-content {
        padding: 30px 20px;
    }

    .emergency-modal-header h2 {
        font-size: 22px;
    }

    .emergency-modal-icon {
        font-size: 50px;
    }

    .emergency-modal-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .emergency-feature {
        flex-direction: row;
        justify-content: center;
        padding: 12px 15px;
    }

    .emergency-call-btn {
        font-size: 20px;
        padding: 16px 35px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}


/* ============================================
   POSTCODE COVERAGE MODAL
   ============================================ */

/* Coverage Modal Overlay */
.coverage-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

/* Coverage Modal Content */
.coverage-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Coverage Modal Close Button */
.coverage-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.coverage-modal-close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

/* Coverage Modal Header */
.coverage-modal-header {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    padding: 40px 30px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    color: white;
}

.coverage-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.coverage-modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Coverage Modal Body */
.coverage-modal-body {
    padding: 35px 30px;
    text-align: center;
}

.coverage-modal-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Coverage Modal Button */
.coverage-modal-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.coverage-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Coverage Modal Responsive */
@media (max-width: 768px) {
    .coverage-modal-content {
        width: 95%;
        max-width: 95%;
        border-radius: 15px;
    }

    .coverage-modal-header {
        padding: 35px 25px 25px;
        border-radius: 15px 15px 0 0;
    }

    .coverage-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
        margin-bottom: 15px;
    }

    .coverage-modal-header h2 {
        font-size: 22px;
    }

    .coverage-modal-body {
        padding: 25px 20px;
    }

    .coverage-modal-text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .coverage-modal-btn {
        padding: 13px 35px;
        font-size: 15px;
        width: 100%;
    }

    .coverage-modal-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .coverage-modal-content {
        width: 96%;
    }

    .coverage-modal-header {
        padding: 30px 20px 20px;
    }

    .coverage-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .coverage-modal-header h2 {
        font-size: 20px;
    }

    .coverage-modal-body {
        padding: 20px 18px;
    }

    .coverage-modal-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .coverage-modal-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .coverage-modal-close {
        width: 32px;
        height: 32px;
        font-size: 22px;
        top: 10px;
        right: 10px;
    }
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(58, 176, 10, 0.03);
    border-radius: 12px;
    border-left: 4px solid #3ab00a;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(58, 176, 10, 0.08);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #3ab00a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #3ab00a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #2a8a00;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-wrapper .subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3ab00a;
    background: white;
    box-shadow: 0 0 0 4px rgba(58, 176, 10, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1fa855;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.emergency-banner {
    background: linear-gradient(135deg, hsl(93, 93%, 71%) 0%, #ffffff 100%);
    padding: 60px 20px;
    text-align: center;
    color: rgb(0, 0, 0);
}

.emergency-banner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.emergency-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.emergency-btn:hover {
    background: #1fa855;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.emergency-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .emergency-banner h2 {
        font-size: 28px;
    }
}


/* ============================================
   404 PAGE STYLES
   ============================================ */

/* 404 Page Specific Styles */
.error-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 176, 10, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.error-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.error-code {
    position: relative;
    margin-bottom: 20px;
}

.error-code h1 {
    font-size: 150px;
    font-weight: 900;
    color: #3ab00a;
    line-height: 1;
    margin: 0;
    text-shadow: 3px 3px 0 rgba(58, 176, 10, 0.1);
    letter-spacing: -5px;
}

.tyre-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 80px;
    height: 80px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.tyre-icon::before {
    content: '🛞';
    font-size: 80px;
    display: block;
}

.error-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
    letter-spacing: -0.5px;
}

.error-message {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 20px 0 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.home-btn:hover {
    background: #1fa855;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.home-btn::before {
    content: '←';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.home-btn:hover::before {
    transform: translateX(-5px);
}

.search-btn-404 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: #3ab00a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: 3px solid #3ab00a;
    transition: all 0.3s ease;
}

.search-btn-404:hover {
    background: #3ab00a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(58, 176, 10, 0.3);
}

.helpful-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(58, 176, 10, 0.1);
}

.helpful-links h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(58, 176, 10, 0.05);
    color: #3ab00a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.link-item:hover {
    background: rgba(58, 176, 10, 0.1);
    border-color: #3ab00a;
    transform: translateY(-2px);
}

/* 404 Page Responsive */
@media (max-width: 768px) {
    .error-code h1 {
        font-size: 100px;
    }

    .tyre-icon::before {
        font-size: 50px;
    }

    .tyre-icon {
        width: 50px;
        height: 50px;
    }

    .error-title {
        font-size: 28px;
    }

    .error-message {
        font-size: 16px;
    }

    .error-container {
        padding: 40px 20px;
    }

    .error-actions {
        flex-direction: column;
        gap: 15px;
    }

    .home-btn,
    .search-btn-404 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-code h1 {
        font-size: 80px;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   AREAS COVERED PAGE STYLES
   ============================================ */

/* Areas Covered Page Hero */
.hero-area-section {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.hero-area-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-area-section p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

/* Coverage Container */
.coverage-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.coverage-intro {
    text-align: center;
    margin-bottom: 50px;
}

.coverage-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.coverage-intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    margin: 40px 0;
}

#map {
    height: 550px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #25D366;
}

/* Areas List */
.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.area-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

.area-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-card h3::before {
    content: "📍";
    font-size: 1.6rem;
}

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

/* Areas Page Additional Footer Styles */
.footer {
    margin-top: 80px;
}

/* Areas Covered Page Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .coverage-container {
        padding: 0 20px;
    }

    .coverage-intro h2 {
        font-size: 1.8rem;
    }

    #map {
        height: 400px;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   BOOKING PAGES SPECIFIC STYLES
   (homebooking.html & mobilebooking.html)
   ============================================ */

/* Payment Section Styles */
.payment-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease;
    max-width: 800px;
    margin: 0 auto;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.payment-header .success-icon {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.payment-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.payment-header p {
    color: #666;
    font-size: 16px;
}

.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.booking-summary h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #666;
    font-size: 15px;
}

.summary-item strong {
    color: #333;
    font-size: 15px;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #3ab00a, transparent);
    margin: 15px 0;
}

.summary-item.total {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0;
    background: rgba(58, 176, 10, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.summary-item.total strong {
    color: #3ab00a;
    font-size: 22px;
}

.payment-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(37, 211, 102, 0.1);
    border-left: 4px solid #25D366;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option-card {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option-card:hover {
    border-color: #3ab00a;
    box-shadow: 0 5px 15px rgba(58, 176, 10, 0.2);
}

.payment-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option-card input[type="radio"]:checked+label {
    color: #3ab00a;
}

.payment-option-card input[type="radio"]:checked~label::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3ab00a;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.payment-option-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    position: relative;
}

.payment-option-card label i {
    font-size: 32px;
    color: #3ab00a;
}

.payment-option-card input[type="radio"]:checked~label {
    background: rgba(58, 176, 10, 0.05);
    margin: -20px;
    padding: 20px;
    border-radius: 10px;
}

.payment-form-details {
    display: none;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.payment-form-details.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.payment-form-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.form-row-payment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.upi-apps {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.upi-app-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.upi-app-btn:hover {
    border-color: #3ab00a;
    box-shadow: 0 5px 15px rgba(58, 176, 10, 0.2);
}

.upi-app-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cash-payment-info {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    border-left: 4px solid #25D366;
}

.cash-payment-info i {
    font-size: 24px;
    color: #3ab00a;
    flex-shrink: 0;
}

.cash-payment-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.bank-details-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-row label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.bank-detail-row .detail-value {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    text-align: right;
}

.payment-instructions {
    margin-top: 20px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.08);
    border-radius: 10px;
}

.payment-instructions p {
    display: flex;
    align-items: start;
    gap: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

.payment-instructions p i {
    color: #3ab00a;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #3ab00a 0%, #25D366 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.back-to-form-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.back-to-form-btn:hover {
    border-color: #3ab00a;
    color: #3ab00a;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(58, 176, 10, 0.05);
    border-radius: 10px;
    color: #666;
    font-size: 14px;
}

.payment-security i {
    color: #3ab00a;
    font-size: 20px;
}

.booking-content.payment-active {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

/* Payment Section Responsive */
@media (max-width: 768px) {
    .payment-section {
        padding: 25px 20px;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-row-payment {
        grid-template-columns: 1fr;
    }

    .upi-apps {
        flex-direction: column;
    }

    .bank-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }

    .bank-detail-row .detail-value {
        text-align: left;
        font-size: 15px;
    }

    .payment-header h2 {
        font-size: 24px;
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE FIXES
   ============================================ */

/* Services Page Enhanced Mobile Responsive */
@media (max-width: 968px) {
    .services-list-container {
        padding: 0 15px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 15px;
    }

    .service-detail-image {
        height: 280px;
        width: 100%;
    }

    .service-detail-content {
        padding: 10px;
    }

    .service-detail-title {
        font-size: 24px;
    }

    .service-detail-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-features {
        margin-bottom: 20px;
    }

    .service-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .service-cta-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .coverage-item {
        padding: 25px 15px;
    }
}

@media (max-width: 600px) {
    .services-list-section {
        padding: 40px 15px;
    }

    .service-detail-card {
        padding: 20px 12px;
        gap: 15px;
    }

    .service-detail-image {
        height: 220px;
    }

    .service-detail-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .service-detail-description {
        font-size: 14px;
    }

    .service-features li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .service-features i {
        font-size: 16px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .coverage-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* Booking Pages Enhanced Mobile Responsive */
@media (max-width: 968px) {
    .booking-form-section {
        padding: 50px 15px;
    }

    .booking-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .call-option-card {
        position: static;
        padding: 25px 20px;
    }

    .call-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .call-icon i {
        font-size: 32px;
    }

    .call-content h3 {
        font-size: 20px;
    }

    .call-content p {
        font-size: 14px;
    }

    .call-now-btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    .booking-form-card {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 26px;
    }

    .form-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .form-group {
        gap: 20px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .location-display {
        padding: 12px 15px;
        font-size: 14px;
    }

    .map-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 15px;
    }

    .map {
        height: 350px;
        border-radius: 10px;
    }

    .map-header {
        padding: 12px;
        margin: -15px -15px 15px -15px;
    }

    .map-header h3 {
        font-size: 16px;
    }

    .close-map-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .confirm-location-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .booking-hero {
        padding: 50px 15px;
    }

    .booking-hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .booking-hero-subtitle {
        font-size: 14px;
    }

    .booking-form-section {
        padding: 40px 10px;
    }

    .call-option-card {
        padding: 20px 15px;
    }

    .call-icon {
        width: 60px;
        height: 60px;
    }

    .call-icon i {
        font-size: 28px;
    }

    .call-content h3 {
        font-size: 18px;
    }

    .call-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .call-now-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .booking-form-card {
        padding: 20px 15px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .booking-form {
        gap: 20px;
    }

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

    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 11px 13px;
        font-size: 13px;
    }

    .form-submit-btn {
        padding: 13px 25px;
        font-size: 14px;
        width: 100%;
    }

    .location-display {
        padding: 11px 13px;
        font-size: 13px;
    }

    .location-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .location-btn {
        padding: 11px 15px;
        font-size: 13px;
    }

    .map-container {
        padding: 12px;
    }

    .map {
        height: 300px;
    }

    .map-header h3 {
        font-size: 15px;
    }

    .confirm-location-btn {
        padding: 11px 18px;
        font-size: 13px;
    }

    /* Payment Section Mobile */
    .payment-section {
        padding: 20px 15px;
    }

    .payment-header h2 {
        font-size: 20px;
    }

    .payment-header p {
        font-size: 13px;
    }

    .booking-summary h3 {
        font-size: 16px;
    }

    .summary-item {
        font-size: 13px;
        padding: 10px 0;
    }

    .payment-option {
        padding: 15px;
    }

    .payment-option-header h3 {
        font-size: 15px;
    }

    .bank-details {
        padding: 12px;
    }

    .bank-detail-row {
        padding: 10px 0;
    }

    .detail-label {
        font-size: 13px;
    }

    .detail-value {
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .services-hero-title {
        font-size: 24px;
    }

    .booking-hero-title {
        font-size: 24px;
    }

    .service-detail-title {
        font-size: 18px;
    }

    .form-title {
        font-size: 20px;
    }

    .call-content h3 {
        font-size: 16px;
    }

    .map {
        height: 250px;
    }
}

/* === FAQ PAGE === */
.faq-hero {
    background: linear-gradient(135deg, #25D366 0%, #20c05c 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 20px 80px;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-hero p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

.faq-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
    background: rgba(58, 176, 10, 0.05);
    color: #2a8a00;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #3ab00a;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.faq-cta {
    background: linear-gradient(135deg, hsl(93, 93%, 71%) 0%, #ffffff 100%);
    color: #050505;
    text-align: center;
    padding: 60px 20px;
}

.faq-cta h2 {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 15px 0;
}

.faq-cta p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.faq-btn-primary {
    background: #fffefe;
    color: #2a8a00;
}

.faq-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.faq-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.faq-btn-secondary:hover {
    background: #ffffff;
    color: #2a8a00;
    transform: translateY(-3px);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 20px;
    }

    .faq-hero h1 {
        font-size: 36px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .faq-section {
        padding: 60px 15px;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 16px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-cta {
        padding: 50px 20px;
    }

    .faq-cta h2 {
        font-size: 28px;
    }

    .faq-cta p {
        font-size: 16px;
    }

    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 28px;
    }

    .faq-hero p {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 15px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-cta h2 {
        font-size: 24px;
    }
}