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

:root {
    /* Black / Orange / Dark Grey palette */
    --orange: #ff6a00;
    --orange-dark: #e55d00;
    --orange-soft: rgba(255, 106, 0, 0.12);
    --orange-glow: rgba(255, 106, 0, 0.28);
    --black: #000000;
    --darker: #0a0a0a;
    --dark: #111111;
    --card: #1a1a1a;
    --card-hover: #222222;
    --grey: #2a2a2a;
    --border: #2e2e2e;
    --text: #f2f2f2;
    --text-muted: #a0a0a0;
    --success: #3dd68c;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--orange-glow);
}

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

.btn-outline:hover {
    background: var(--orange);
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.15rem 2.3rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.text-center {
    text-align: center;
    margin-top: 2.75rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    min-height: 100px;
}

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

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

.logo-img {
    height: 160px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.nav-cta {
    background: var(--orange);
    color: #000;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: #fff;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
    border-radius: 1px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse 80% 50% at 70% -10%, rgba(255, 106, 0, 0.12) 0%, transparent 60%),
        linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    overflow: hidden;
    padding-top: 200px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 55vw;
    max-width: 700px;
    height: 55vw;
    max-height: 700px;
    background: url('logo.jpg') center/contain no-repeat;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
    filter: brightness(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.8vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.4rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.4rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.trust-item i {
    color: var(--orange);
    font-size: 1.15rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 5.5rem 0;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.85rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3.2rem;
    font-size: 1.1rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.1rem 1.8rem;
    transition: all var(--transition);
}

.service-card:hover {
    background: var(--card-hover);
    border-color: rgba(255, 106, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 52px;
    height: 70px;
    background: var(--orange-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--orange);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
    line-height: 1.6;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.service-link:hover {
    color: #fff;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--dark);
}

.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    margin: 1.9rem 0 2.4rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.05rem;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.why-list i {
    color: var(--orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.why-list strong {
    color: #fff;
}

.image-placeholder {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.image-placeholder i {
    font-size: 3.2rem;
    color: var(--orange);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.image-placeholder.large {
    height: 400px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--darker);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.1rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
}

.stars {
    color: var(--orange);
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.3rem;
    line-height: 1.65;
}

.author {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: 
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 106, 0, 0.1) 0%, transparent 60%),
        var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 5rem 0;
}

.cta-banner h2 {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    margin-bottom: 0.85rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
}

.cta-banner .btn {
    margin: 0.4rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: 
        radial-gradient(ellipse 70% 50% at 50% -20%, rgba(255, 106, 0, 0.12) 0%, transparent 55%),
        var(--darker);
    padding: 12rem 0 4.2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
    background: var(--darker);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.6rem;
    transition: border-color var(--transition);
}

.service-block:hover {
    border-color: rgba(255, 106, 0, 0.25);
}

.service-block-content {
    max-width: 720px;
}

.service-icon-large {
    width: 60px;
    height: 70px;
    background: var(--orange-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 1.7rem;
    color: var(--orange);
}

.service-block h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.service-block p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.feature-list i {
    color: var(--orange);
    font-size: 0.85rem;
}

.extra-services {
    margin-top: 3.5rem;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin-top: 2.2rem;
}

.extra-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.9rem;
    text-align: center;
    transition: all var(--transition);
}

.extra-card:hover {
    border-color: rgba(255, 106, 0, 0.35);
    transform: translateY(-4px);
}

.extra-card i {
    font-size: 1.9rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.extra-card h3 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.extra-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-intro {
    background: var(--darker);
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.15rem;
    line-height: 1.7;
}

.values {
    background: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.6rem;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.1rem;
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
}

.value-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1.1rem;
}

.value-card h3 {
    margin-bottom: 0.7rem;
    color: #fff;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.credentials {
    background: var(--darker);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.6rem;
}

.credential {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.1rem;
    text-align: center;
    transition: all var(--transition);
}

.credential:hover {
    border-color: rgba(255, 106, 0, 0.3);
}

.credential i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1.1rem;
}

.credential h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.credential p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.contact-method {
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
}

.contact-method i {
    width: 46px;
    height: 46px;
    background: var(--orange-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-method a {
    color: var(--orange);
    font-weight: 600;
}

.contact-method a:hover {
    color: #fff;
}

.contact-method .note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.contact-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-soft);
}

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

.form-note {
    margin-top: 1.1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-success p {
    color: var(--text-muted);
}

/* Emergency Banner */
.emergency-banner {
    background: #121212;
    border-top: 1px solid var(--border);
    padding: 2.6rem 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-content i {
    font-size: 2.4rem;
    color: var(--orange);
}

.emergency-content h2 {
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
}

.emergency-content p {
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 4.2rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3.2rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.footer-col h3 i {
    color: var(--orange);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 0.55rem;
}

.footer-col ul a {
    color: var(--text-muted);
    transition: color var(--transition);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.8rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom .disclaimer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #666;
}




/* ===== TERMS ===== */
.terms-section {
    background: var(--darker);
    padding: 4rem 0 5rem;
}

.terms-content {
    max-width: 800px;
}

.terms-content h2 {
    color: #fff;
    font-size: 1.35rem;
    margin: 2.2rem 0 0.9rem;
    letter-spacing: -0.01em;
}

.terms-content h2:first-of-type {
    margin-top: 1rem;
}

.terms-content p,
.terms-content li {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.7rem;
}

.terms-content ul {
    margin: 0.5rem 0 1.2rem 1.2rem;
    list-style: disc;
}

.terms-content a {
    color: var(--orange);
}

.terms-content a:hover {
    text-decoration: underline;
}

.terms-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.terms-contact {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--darker);
    border-top: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    background: var(--card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.75rem;
}

/* ===== LEAVE A REVIEW ===== */
.leave-review {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.review-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-platform {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all var(--transition);
    display: block;
}

.review-platform:hover {
    border-color: rgba(255, 106, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.review-platform i {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.review-platform h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.review-platform p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}

.review-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem;
    max-width: 640px;
    margin: 0 auto;
}

.review-form-wrapper h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .logo-img {
        height: 90px;
    }

    .navbar {
        min-height: 80px;
        padding: 0.5rem 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 1.6rem;
        gap: 1.3rem;
    }

    .navbar.active .nav-cta {
        display: inline-flex;
        margin: 0.5rem 1.5rem 1.2rem;
        justify-content: center;
    }

    .why-us .container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero {
        min-height: 82vh;
        text-align: center;
        padding-top: 160px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .logo-img {
        height: 58px;
    }

    .navbar {
        min-height: 64px;
        padding: 0.4rem 0;
    }

    .footer-logo {
        height: 70px;
    }

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

    .trust-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 1.1rem;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }
}
