*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --steel: #0d4a55;
    --steel2: #24527f;
    --sky: #2e7db8;
    --amber: #9c900c;
    --amber2: #e8820e;
    --offwhite: #f5f2ed;
    --warmgrey: #e8e3db;
    --white: #ffffff;
    --dark: #1a1a1a;
    --body: #444444;
    --muted: #777777;
    --divider: #d9d3c8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', Georgia, serif;
    background: var(--white);
    color: var(--dark);
    font-size: 16px;
    line-height: 1.8;
}

/* ─── UTILITY ─── */
.label-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    color: var(--steel);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.body-text {
    font-size: 1.05rem;
    color: var(--body);
    line-height: 1.9;
    font-weight: 300;
}

/* TOPBAR */
.topbar {
    background: #1f3a52;
    font-size: 0.8rem;
    color: #9bb6cc;
}

.topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i {
    color: var(--amber);
    font-size: 0.75rem;
}

.topbar-right {
    background: var(--amber);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* HEADER */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* INNER */
.header-inner {
    max-width: 1200px;
    margin: auto;
    height: 80px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.logo-icon i {
    color: var(--amber);
    font-size: 1.3rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--steel);
}

.logo-text small {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--amber);
}

/* NAV */
.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: var(--steel);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

/* NAV HOVER LINE */
.nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--amber);
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* CTA BUTTON */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn i {
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .nav {
        display: none;
    }

}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,25,40,0.9) 40%, rgba(10,25,40,0.4));
    z-index: 1;
}

/* CONTAINER */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

/* CONTENT */
.hero-content {
    max-width: 600px;
    margin-bottom: 50px;
}

.hero-tag {
    display: inline-block;
    color: var(--amber);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* TITLE */
.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--amber);
    display: block;
}

/* TEXT */
.hero p {
    color: #9bb6cc;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--amber);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
}

/* SERVICES FLOATING */
.hero-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.service-card:hover {
    background: var(--amber);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* EMERGENCY BAR */
.hero-emergency {
    margin-top: 40px;
    background: var(--amber);
    padding: 16px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.hero-emergency span {
    font-size: 0.9rem;
    color: #fff;
}

.hero-emergency a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .hero-services {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .hero-services {
        grid-template-columns: 1fr;
    }

}
.about {
    padding: 110px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    background: #fff;
}

/* LEFT SIDE */
.about-left {
    position: relative;
}

/* IMAGE */
.about-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* SOFT BACKGROUND SHAPE */
.about-image::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: rgba(0,0,0,0.05);
    top: 20px;
    left: 20px;
    z-index: -1;
    border-radius: 12px;
}

/* BADGE */
.about-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--amber);
    color: #fff;
    padding: 16px 22px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.about-badge span {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* RIGHT SIDE */
.about-right .section-title {
    margin-bottom: 18px;
}

.about-text {
    color: #6b7a8c;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* FEATURES GRID */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--steel);
}

.feature i {
    color: var(--amber);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: static;
        margin-top: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}
.services {
    padding: 110px 8%;
    background: #f8fafc;
}

/* HEADER */
.services-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.services-header p {
    color: #6b7a8c;
    line-height: 1.7;
}

/* TIMELINE */
.services-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* CENTER LINE */
.services-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #dbe3ec;
}

/* ITEM */
.srv-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

/* DOT */
.srv-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--steel);
    color: var(--amber);
    font-family: 'Oswald';
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

/* CONTENT */
.srv-content {
    background: #fff;
    padding: 24px 26px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

/* HOVER */
.srv-item:hover .srv-content {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.srv-content h3 {
    margin-bottom: 8px;
    color: var(--steel);
}

/* TEXT */
.srv-content p {
    font-size: 0.9rem;
    color: #6b7a8c;
    line-height: 1.6;
}

/* BADGE */
.srv-content span {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    background: #eef3f8;
    padding: 4px 10px;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .services-timeline::before {
        left: 20px;
    }

    .srv-item {
        padding-left: 70px;
    }

    .srv-dot {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
}
/* ─── WHY CHOOSE US ─── */
.why {
    padding: 100px 7%;
    background: var(--steel);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-left .section-title {
    color: var(--white);
}

.why-left .body-text {
    color: #93b8d8;
    margin-bottom: 20px;
}

.why-divider {
    width: 60px;
    height: 3px;
    background: var(--amber);
    margin: 28px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-top: 3px solid var(--amber);
    padding: 30px 26px;
    border-radius: 3px;
}

.why-card i {
    font-size: 1.8rem;
    color: var(--amber);
    margin-bottom: 14px;
    display: block;
}

.why-card h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card p {
    font-size: 0.88rem;
    color: #7a9ab8;
    line-height: 1.75;
    font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 7%;
    background: var(--warmgrey);
}

.test-header {
    text-align: center;
    margin-bottom: 56px;
}

.test-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
}

.test-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 3px;
    border-bottom: 4px solid transparent;
    position: relative;
}

.test-card.featured {
    background: var(--steel);
    border-bottom-color: var(--amber);
}

.test-quote-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 2.5rem;
    color: var(--offwhite);
    line-height: 1;
}

.featured .test-quote-icon {
    color: rgba(255, 255, 255, 0.07);
}

.test-stars {
    color: var(--amber);
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.test-card blockquote {
    font-style: italic;
    font-size: 1rem;
    color: var(--body);
    line-height: 1.85;
    margin-bottom: 24px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.featured blockquote {
    color: #a4c4de;
}

.test-author {
    border-top: 1px solid var(--divider);
    padding-top: 18px;
}

.featured .test-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.test-author strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.featured .test-author strong {
    color: var(--white);
}

.test-author span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
}

.featured .test-author span {
    color: #6a9ab8;
}

/* SECTION */
.contact {
    padding: 110px 8%;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.contact-left .section-title {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.contact-left .body-text {
    color: #6b7a8c;
    line-height: 1.7;
    max-width: 420px;
}

/* RIGHT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD STYLE */
.contact-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 14px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Accent line */
.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--amber);
}

/* ICON */
.contact-card i {
    font-size: 1.4rem;
    color: var(--amber);
    margin-bottom: 12px;
}

/* TEXT */
.contact-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--steel);
}

.contact-card span {
    font-size: 0.8rem;
    color: #8a97a6;
}

/* HIGHLIGHT CARD */
.contact-card.highlight {
    background: linear-gradient(135deg, var(--amber), #ffb347);
    color: #fff;
}

.contact-card.highlight p,
.contact-card.highlight span,
.contact-card.highlight h4 {
    color: #fff;
}

.contact-card.highlight i {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left .body-text {
        margin: auto;
    }
}

/* ─── FOOTER ─── */
footer {
    background: #111820;
    padding: 70px 7% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-about .logo-name {
    color: var(--offwhite);
}

.footer-about .logo-name small {
    color: var(--amber);
}

.footer-about p {
    margin-top: 18px;
    font-size: 0.88rem;
    color: #5a7a96;
    line-height: 1.8;
    font-weight: 300;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--amber);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #5a7a96;
    text-decoration: none;
    font-weight: 300;
}

.footer-col ul li i {
    color: var(--amber);
    font-size: 0.7rem;
}

.footer-bottom {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #3d5a72;
    font-weight: 300;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.f-badge {
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #3d5a72;
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.f-badge i {
    font-size: 0.7rem;
    color: var(--amber);
}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        display: none;
    }

    .why {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .test-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
      display: flex;
      flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media(max-width:768px) {
    .topbar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .services-header {
        flex-direction: column;
    }

    .services-header p {
        text-align: left;
        max-width: none;
    }
    
    .contact {
      width: 100%;
    }
}

@media(max-width:520px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-checks {
        grid-template-columns: 1fr;
    }

    header {
        padding: 0 5%;
    }

    .contact-info .body-text {
        margin-bottom: 40px;
        width: 100%;
    }
    .contact {
      width: 100%;
    }
    
}
