/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d84315;
    --primary-dark: #bf360c;
    --secondary-color: #ff6f00;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --accent-blue: #1976d2;
    --success-green: #388e3c;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 100px;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  position: relative;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

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

/* Navigation */
.navbar, .site-header {
  position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
}

.navbar.scrolled, .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.site-header .container,
.nav-container {
  display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo, .brand {
    display: flex;
  align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
  text-decoration: none;
}

.brand img {
    width: 180px;
  height: auto;
}

.logo i {
    font-size: 2rem;
}

.nav-menu, .nav-list {
  display: flex;
  list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link, .nav-list a:not(.btn) {
  text-decoration: none;
    color: var(--text-dark);
  font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-list a:not(.btn):hover {
    color: var(--primary-color);
}

.emergency-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger, .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-cta .tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
    color: var(--primary-color);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta .tel:hover {
    color: var(--primary-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    margin-top: -100px;
    padding-top: 180px;
  overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
  content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('../assets/1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    animation: heat-pulse 6s ease-in-out infinite;
    filter: blur(0px);
}

@keyframes heat-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.22;
    }
    50% {
        transform: translateY(-52%) scale(1.05);
        opacity: 0.35;
    }
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content, .hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem 0;
  width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-title, .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.hero-subtitle, .hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
  color: white;
}

.hero-buttons, .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.btn-full {
    width: 100%;
}

.hero-features, .usp {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
    list-style: none;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.hero-feature i {
    font-size: 2rem;
}

.usp li {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: white;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Sections */
.section, .services, .about, .testimonials, .contact, .coverage, .faqs, .cta {
    padding: 5rem 0;
}

.services, .testimonials {
    background: var(--bg-white);
}

.about, .contact, .coverage, .faqs {
    background: var(--bg-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card, .card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-list, .ticks {
    list-style: none;
    margin-top: 1rem;
}

.service-list li, .ticks li {
    padding: 0.5rem 0;
    color: var(--text-light);
  position: relative;
    padding-left: 1.5rem;
}

.service-list li::before, .ticks li::before {
    content: '✓';
  position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.service-card .service-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.service-card .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Service Rows */
.service-row, .services-overview .service-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.service-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-row .media {
    margin: 0;
}

.service-row .media img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-row .content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-row .content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-row .content h3 a:hover {
    color: var(--primary-color);
}

.service-row .content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* About Section */
.about-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
  gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--success-green);
    margin-top: 0.3rem;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-card {
  background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


.about-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--text-light);
    margin: 0;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin: 0.3rem 0;
}

.contact-card a {
    color: var(--primary-color);
  text-decoration: none;
    font-weight: 600;
}

.contact-note {
    font-size: 0.85rem !important;
    font-style: italic;
}

.contact-form-wrapper, .contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Breadcrumb */
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--primary-color);
}

.breadcrumb li {
  color: var(--text-light);
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--text-light);
  font-weight: bold;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Coverage Areas */
.areas {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.areas li, .areas li a {
  display: block;
  background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
    color: var(--text-dark);
  text-decoration: none;
    transition: all 0.3s ease;
}

.areas li:hover, .areas li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* FAQs */
.faqs {
  max-width: 800px;
  margin: 0 auto;
}

.faqs details {
  background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
  padding: 0;
  margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  overflow: hidden;
}

.faqs details[open] {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faqs summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.faqs summary::-webkit-details-marker {
  display: none;
}

.faqs summary::after {
  content: '+';
  font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faqs details[open] summary::after {
  transform: rotate(45deg);
}

.faqs summary:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.faqs details p {
  padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: white;
    color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.cta .btn-primary:hover {
    background: #f5f5f5;
  transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Footer */
.footer, .site-footer {
    background: var(--text-dark);
  color: white;
    padding: 3rem 0 1rem;
}

.footer-content, .footer-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .site-footer h2 {
  margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.footer-section p, .site-footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul, .footer-nav, .trust {
    list-style: none;
}

.footer-section ul li, .footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a, .footer-nav a, .site-footer a {
    color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover, .footer-nav a:hover, .site-footer a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.gas-safe-badge {
    display: inline-flex;
    align-items: center;
  gap: 0.5rem;
    background: var(--success-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
}

.gas-safe-badge i {
    font-size: 1.2rem;
}

.footer-bottom, .legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p, .legal p {
    color: rgba(255, 255, 255, 0.5);
}

.trust li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
}

.trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
    color: var(--secondary-color);
}

.hours {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .site-header .container {
  gap: 0.5rem;
        max-width: 100%;
        overflow: hidden;
        padding: 1rem 15px;
        justify-content: space-between;
    }

    .brand {
        flex: 0 0 auto;
        max-width: 40%;
    }
    
    .site-nav {
        order: 3;
        flex: 0 0 auto;
    }

    .header-cta {
        margin-left: auto;
        flex: 0 0 auto;
        max-width: 35%;
        margin-right: 1rem;
    }

    .header-cta .tel {
        font-size: 1.1rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
    }

    .nav-menu, .nav-list {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.open, .nav-list.open {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li, .nav-list li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .hamburger, .nav-toggle {
        display: flex;
        margin-left: 0.5rem;
        background: transparent;
        border: none;
        padding: 0.3rem;
        cursor: pointer;
        position: relative;
        width: 30px;
        height: 24px;
        flex-direction: column;
        flex: 0 0 auto;
        justify-content: space-between;
    }
    
    .nav-toggle::before,
    .nav-toggle::after,
    .nav-toggle {
        font-size: 0;
    }
    
    .nav-toggle::before {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        top: 0;
        transition: all 0.3s ease;
    }
    
    .nav-toggle::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        bottom: 0;
        transition: all 0.3s ease;
    }
    
    .nav-toggle span {
        content: '';
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    
    .service-card .service-actions {
        flex-direction: column;
    }
    
    .service-card .btn {
        width: 100%;
    }

    .nav-toggle.active::before {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span {
        opacity: 0;
    }

    .nav-toggle.active::after {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title, .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle, .hero .lead {
        font-size: 1.1rem;
    }

    .about-content {
    grid-template-columns: 1fr;
  }
  
    .contact-content {
    grid-template-columns: 1fr;
  }
  
    .contact-info {
        grid-template-columns: 1fr;
  }
  
    .service-row,
    .service-row.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }

    .site-header .container {
        padding: 0.75rem 10px;
        gap: 0.25rem;
        justify-content: space-between;
    }

    .header-cta .tel {
        padding: 0.3rem 0.5rem;
        font-size: 1.1rem;
    }
    
    .brand {
        max-width: 35%;
    }
    
    .header-cta {
        max-width: 40%;
        margin-right: 0.75rem;
    }
    
    .site-nav {
        flex: 0 0 auto;
    }

    .hero-title, .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons, .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .hero-features, .usp {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .service-card {
        margin: 0 0.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .footer-content, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding: 0.5rem 8px;
        gap: 0.1rem;
    }
    
    .brand {
        max-width: 30%;
    }
    
    .header-cta {
        max-width: 45%;
        margin-right: 0.5rem;
    }
    
    .header-cta .tel {
        font-size: 1.2rem;
        padding: 0.25rem 0.4rem;
    }
    
    .nav-toggle {
        width: 28px;
        height: 22px;
    }
    
    .nav-toggle::before,
    .nav-toggle::after,
    .nav-toggle span {
        width: 22px;
    }

    .hero-title, .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle, .hero .lead {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .about-image {
        grid-template-columns: 1fr;
    }
}

/* Skip Link */
.skip-link {
  position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}
