/* =============================================
   ABSM CONSTRUCTION LTD - DARK THEME
   ============================================= */

:root {
    --primary: #e31837;
    --primary-dark: #b81430;
    --primary-light: #ff3a56;
    --dark: #0a0a0a;
    --dark-lighter: #111111;
    --dark-card: #161616;
    --dark-border: #222222;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --text: #cccccc;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 5px 30px rgba(227, 24, 55, 0.3);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-full {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    padding: 12px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--gray);
    font-size: 14px;
}

.top-social a:hover {
    color: var(--primary);
}

.top-info {
    display: flex;
    gap: 30px;
}

.top-info span,
.top-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-light);
}

.top-info a:hover {
    color: var(--white);
}

.top-info i {
    color: var(--primary);
}

/* Header */
.header {
    background: var(--dark-lighter);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo i {
    font-size: 36px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-sub {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: var(--radius);
    margin-left: 10px;
}

.nav-link.btn-nav:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.3) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    padding: 80px 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 13px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: inherit;
}

a.hero-phone:hover {
    color: inherit;
}

.hero-phone i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
}

.hero-phone span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
}

.hero-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.hero-offer {
    position: absolute;
    bottom: 80px;
    right: 60px;
    background: var(--primary);
    padding: 25px 35px;
    text-align: center;
    z-index: 1;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.offer-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.offer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.offer-text span {
    font-size: 28px;
    font-weight: 700;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header.light .section-subtitle,
.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-title span {
    color: var(--primary);
}

/* Services Section */
.services {
    background: var(--dark);
}

.section-header p {
    color: var(--gray);
    margin-top: 10px;
}

.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary);
    font-size: 24px;
}

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

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 24, 55, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

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

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.service-link {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* About Section */
.about {
    background: var(--dark-lighter);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--dark-border);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--primary);
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    padding: 25px 30px;
    text-align: center;
    border-radius: var(--radius);
}

.badge-number {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary);
    font-size: 18px;
}

.about-feature span {
    font-size: 14px;
    color: var(--white);
}

/* Stats Section */
.stats {
    background: var(--primary);
    padding: 60px 0;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.stat-item i {
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 32px;
}

.stat-item:last-child .stat-number::after {
    content: '';
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Why Choose Us */
.why-us {
    background: var(--dark);
}

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

.why-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 24, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Process Section - solid dark, no image */
.process {
    position: relative;
    padding: 120px 0;
    background: var(--dark);
}

.process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--dark);
}

.process .container {
    position: relative;
    z-index: 1;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(227, 24, 55, 0.2);
    line-height: 1;
    margin-bottom: -30px;
}

.step-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 32px;
    color: var(--primary);
}

.process-step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    background: var(--dark-lighter);
}

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

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-card > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 40px;
}

.testimonial-quote i {
    font-size: 50px;
    color: rgba(227, 24, 55, 0.15);
}

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    padding: 50px 0;
}

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

.cta-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

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

.cta-actions {
    display: flex;
    gap: 20px;
}

/* Contact Section */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 35px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

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

.contact-details a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 45px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 14px;
    color: var(--white);
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    color: var(--gray);
}

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

/* UK Number Plate Input */
.numberplate-input {
    display: flex;
    align-items: stretch;
    background: #f7d117;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid #000;
    max-width: 280px;
}

.plate-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003399;
    color: #fff;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    min-width: 45px;
    position: relative;
}

.plate-badge::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Ccircle cx='30' cy='20' r='18' fill='%23003399' stroke='%23ffcc00' stroke-width='2'/%3E%3Ccircle cx='30' cy='20' r='12' fill='none' stroke='%23ffcc00' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.numberplate-input input {
    flex: 1;
    background: #f7d117 !important;
    border: none !important;
    padding: 16px 20px !important;
    font-family: 'UKNumberPlate', 'Arial Black', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #000 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.numberplate-input input::placeholder {
    color: #999 !important;
    font-size: 18px;
    letter-spacing: 1px;
}

.numberplate-input input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Footer */
.footer {
    background: var(--dark-lighter);
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand > p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray);
}

.footer-contact li i {
    color: var(--primary);
    width: 16px;
}

.footer-contact a {
    color: var(--gray);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Call Bar - tap to call on phones */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    -webkit-tap-highlight-color: transparent;
}

.mobile-call-bar i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .back-to-top {
        bottom: 75px;
    }
    
    .back-to-top.visible {
        bottom: 75px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 70px;
    }
    
    .back-to-top.visible {
        bottom: 70px;
    }
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Mobile Base */
html {
    -webkit-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: rgba(227, 24, 55, 0.2);
}

a[href^="tel:"] {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-offer {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-lighter);
        flex-direction: column;
        padding: 30px;
        gap: 10px;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid var(--dark-border);
    }
    
    .nav-link.btn-nav {
        margin: 20px 0 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        width: 150px;
        right: 0;
        bottom: -20px;
    }
    
    .about-badge {
        left: 0;
        top: 20px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 36px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .process-step {
        padding: 0 15px;
    }
    
    .step-number {
        font-size: 56px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
    
    .process-step h3 {
        font-size: 20px;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-phone {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hero-phone span {
        font-size: 22px;
    }
    
    .hero-phone i {
        min-width: 44px;
        min-height: 44px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-item i {
        font-size: 36px;
    }
    
    .numberplate-input {
        max-width: 100%;
    }
    
    .numberplate-input input {
        font-size: 20px !important;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .nav-link {
        padding: 18px 20px;
        min-height: 48px;
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-phone span {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
