/* ============================================
   ELLY MOTORS - Complete Styles
   Professional Mobile Mechanic Website
   ============================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f8f8;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }

p {
    margin-bottom: 12px;
    color: #444;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: #c62828;
    color: #fff;
}
.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.3);
}

.btn-secondary {
    background: #333;
    color: #fff;
}
.btn-secondary:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    min-width: 200px;
}

.btn svg {
    flex-shrink: 0;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* ========== HEADER ========== */
.header {
    background: #0d0d0d;
    color: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #c62828;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 800;
    color: #fff;
}
.logo span {
    font-size: 0.75rem;
    color: #999;
    display: block;
    letter-spacing: 2px;
    margin-top: -2px;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav a {
    font-size: 0.9rem;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    color: #ccc;
    font-weight: 500;
}
.nav a:hover,
.nav a.active {
    color: #fff;
    border-bottom-color: #c62828;
}

.call-btn-header {
    background: #c62828;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.call-btn-header:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    padding: 20px 24px;
    gap: 12px;
    border-top: 1px solid #333;
}
.mobile-nav a {
    color: #ddd;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}
.mobile-nav a:hover {
    color: #c62828;
    padding-left: 8px;
}
.mobile-nav .mobile-call {
    background: #c62828;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    margin-top: 8px;
    color: #fff;
}
.mobile-nav .mobile-call:hover {
    background: #b71c1c;
    padding-left: 0;
}
.mobile-nav.open {
    display: flex;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    border-bottom: 3px solid #c62828;
}
.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.page-hero p {
    color: #bbb;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HERO (Homepage) ========== */
.hero {
    background: #0d0d0d;
    color: #fff;
    padding: 60px 0 80px;
    border-bottom: 3px solid #c62828;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-size: 1rem;
    color: #c62828;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hero h2 {
    font-size: 1.8rem;
    color: #aaa;
    font-weight: 400;
}
.hero-description {
    font-size: 1.1rem;
    color: #bbb;
    margin: 20px 0 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    margin: 0 auto;
}

/* ========== SERVICES PREVIEW (Homepage) ========== */
.services-preview {
    padding: 70px 0;
    background: #fff;
}
.services-preview h2 {
    text-align: center;
}
.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.service-card {
    background: #f5f5f5;
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #c62828;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-icon {
    display: block;
    margin: 0 auto 14px;
}
.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.service-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== SERVICES DETAIL PAGE ========== */
.services-detail {
    padding: 60px 0;
    background: #f8f8f8;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #c62828;
    transition: all 0.3s ease;
}
.service-detail-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f5;
    border-radius: 12px;
    padding: 20px;
    height: 100px;
    width: 100px;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.service-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.service-meta .price {
    color: #c62828;
    font-weight: 700;
    font-size: 1.1rem;
}
.service-meta .duration {
    color: #666;
    font-size: 0.95rem;
}

.service-description {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
}

.service-includes {
    background: #f8f8f8;
    padding: 20px 24px;
    border-radius: 10px;
    margin-bottom: 24px;
}
.service-includes h4 {
    margin-bottom: 10px;
    color: #1a1a1a;
}
.service-includes ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
.service-includes ul li {
    padding: 4px 0;
    color: #444;
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}
.service-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
}

.service-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== WHY CHOOSE ========== */
.why-choose {
    padding: 70px 0;
    background: #fff;
}
.why-choose h2 {
    text-align: center;
}

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

.why-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.why-card svg {
    margin-bottom: 12px;
}
.why-card h3 {
    font-size: 1.1rem;
}
.why-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: #f0f0f0;
    padding: 70px 0;
}
.testimonials h2 {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.testimonial-grid blockquote {
    background: #fff;
    padding: 28px 30px;
    border-radius: 12px;
    border-left: 5px solid #c62828;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.testimonial-grid blockquote svg {
    display: block;
    margin-bottom: 10px;
}
.testimonial-grid blockquote p {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
}
.testimonial-grid blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

/* ========== AREAS COVERED ========== */
.areas-covered {
    padding: 60px 0;
    background: #fff;
}
.areas-covered h2 {
    text-align: center;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 20px;
}
.area-tag {
    background: #f0f0f0;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}
.area-tag:hover {
    background: #c62828;
    color: #fff;
}

.areas-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

/* ========== ABOUT PAGE ========== */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.about-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.info-item {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}
.info-item .number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #c62828;
}
.info-item .label {
    font-size: 0.85rem;
    color: #666;
}

.about-text h2 {
    margin-bottom: 16px;
}
.about-text p {
    color: #444;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8f8f8;
    border-radius: 8px;
}
.value-item span {
    font-weight: 500;
}

.about-cta {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ========== CONTACT / BOOKING PAGE ========== */
.booking-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.booking-form-wrapper h2 {
    margin-bottom: 24px;
}

.calendar-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.calendar-wrapper h2 {
    margin-bottom: 4px;
}
.calendar-sub {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ========== FORM STYLES ========== */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #1a1a1a;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #1a1a1a;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c62828;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* Form Message */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}
.form-message.error {
    display: block;
    background: #fbe9e7;
    color: #c62828;
    border-left: 4px solid #c62828;
}

/* ========== CALENDAR OVERRIDES ========== */
#calendar {
    max-width: 100%;
    margin: 0 auto;
}
.fc {
    font-family: inherit;
}
.fc .fc-button-primary {
    background: #c62828;
    border-color: #c62828;
}
.fc .fc-button-primary:hover {
    background: #b71c1c;
    border-color: #b71c1c;
}
.fc .fc-daygrid-day.fc-day-today {
    background: #fff5f5;
}
.fc .fc-daygrid-day-number {
    color: #1a1a1a;
}
.fc .fc-daygrid-day.fc-day-disabled {
    background: #f0f0f0;
}
.fc-daygrid-day.fc-day-disabled .fc-daygrid-day-number {
    color: #999;
}

/* ========== QUICK CONTACT (sidebar) ========== */
.quick-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}
.quick-contact h3 {
    text-align: center;
    margin-bottom: 16px;
}
.quick-contact .btn {
    width: 100%;
    justify-content: center;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: #c62828;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.cta-banner .btn-primary {
    background: #fff;
    color: #c62828;
}
.cta-banner .btn-primary:hover {
    background: #f5f5f5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ========== FOOTER ========== */
.footer {
    background: #0d0d0d;
    color: #aaa;
    padding: 50px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}
.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 12px;
}
.footer p {
    color: #888;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer a {
    color: #aaa;
    transition: all 0.3s ease;
}
.footer a:hover {
    color: #c62828;
}
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* ========== STICKY MOBILE CALL ========== */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #c62828;
    text-align: center;
    padding: 14px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-call a {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ========== BACK TO TOP ========== */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
}
#backToTop:hover {
    transform: scale(1.1);
    background: #b71c1c;
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== HISTORY PAGE ========== */
.history-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.history-lookup {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}
.history-lookup h2 {
    margin-bottom: 16px;
}

.lookup-form {
    display: flex;
    gap: 12px;
}
.lookup-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}
.lookup-form input:focus {
    outline: none;
    border-color: #c62828;
}

.history-table-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    margin: 30px 0;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.history-table th {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
}
.history-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.history-table tr:hover td {
    background: #fafafa;
}
.history-table .status-completed {
    color: #2e7d32;
    font-weight: 600;
}
.history-table .status-pending {
    color: #ed6c02;
    font-weight: 600;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #c62828;
}
.stat-card .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.no-history {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
}
.no-history p {
    font-size: 1.1rem;
    color: #666;
}
.no-history .btn {
    margin-top: 20px;
}

/* ========== LOYALTY PROGRAM ========== */
.loyalty-program {
    margin-top: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.loyalty-program h2 {
    text-align: center;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 24px;
}
.loyalty-card {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #c62828;
}
.loyalty-card h3 {
    font-size: 1.1rem;
    color: #c62828;
}
.loyalty-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}



/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large tablets & small laptops */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav,
    .call-btn-header {
        display: none;
    }
    .hamburger {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero h2 {
        font-size: 1.3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer p {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-quick-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }
    .service-detail-icon {
        margin: 0 auto;
    }
    .service-includes ul {
        grid-template-columns: 1fr;
    }
    .service-cta {
        justify-content: center;
    }

    .booking-form-wrapper,
    .calendar-wrapper {
        padding: 24px;
    }

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

    .sticky-call {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .service-detail-card {
        padding: 20px;
    }
    .service-meta {
        justify-content: center;
    }
    
    .booking-form-wrapper,
    .calendar-wrapper {
        padding: 16px;
    }
    .history-lookup {
        padding: 20px;
    }
    .lookup-form {
        flex-direction: column;
    }
    .history-stats {
        grid-template-columns: 1fr;
    }
    .about-quick-info {
        grid-template-columns: 1fr;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .areas-grid {
        gap: 8px;
    }
    .area-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* Print styles */
@media print {
    .header,
    .sticky-call,
    #backToTop,
    .cta-banner {
        display: none !important;
    }
    body {
        padding: 20px;
        background: #fff;
    }
    .service-detail-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
}