/* public/css/sitelook.css */

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #faf8f5;
    color: #1e1e1e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* fallback Inter via system fonts — clean and professional */
h1,
h2,
h3,
.logo,
.btn,
.nav-links a {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* -------------------- CORE BRAND COLOR: #54331d -------------------- */
:root {
    --primary-dark: #54331d;
    /* main brand */
    --primary-light: #aa7c5a;
    /* softer touch */
    --bg-light: #fdfbf9;
    --text-dark: #2b2b2b;
    --white: #ffffff;
    --sand: #f2e9e0;
    --shadow: 0 20px 30px -10px rgba(84, 51, 29, 0.15);
    --shadow-card: 0 10px 25px -5px rgba(84, 51, 29, 0.08);
}

/* -------------------- UTILS -------------------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-dark);
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 18px -8px rgba(84, 51, 29, 0.4);
    letter-spacing: 0.3px;
}

.btn i {
    font-size: 1.1rem;
}

.btn:hover {
    background-color: #6b3f25;
    transform: scale(1.02);
    box-shadow: 0 12px 24px -8px #54331d99;
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    box-shadow: none;
}

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

/* -------------------- HEADER / NAV -------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.logo i {
    font-size: 2.2rem;
    color: #c52a1d;
    /* urgent accent — but primary stays */
    background: rgba(84, 51, 29, 0.05);
    padding: 10px;
    border-radius: 50%;
}

.logo span {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo .f48 {
    background: var(--primary-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 1.3rem;
    margin-left: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #3d2c1c;
    transition: color 0.2s;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
}

.nav-links .emergency-phone {
    background: #fce4e1;
    color: #b13b2b;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 1px solid #d66b5b;
}

.nav-links .emergency-phone i {
    margin-right: 6px;
    color: #c0392b;
}

/* -------------------- HERO SECTION -------------------- */
.hero {
    background: linear-gradient(105deg, #fdf9f5 0%, #fffaf5 100%);
    border-radius: 40px;
    margin-top: 12px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
    border: 1px solid #e5d7cc;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #54331d10 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1f2a2f;
}

.hero h1 span {
    color: var(--primary-dark);
    background: #fffbee;
    padding: 0 12px;
    border-radius: 60px;
    display: inline-block;
}

.hero .subhead {
    font-size: 1.3rem;
    margin: 24px 0 28px;
    color: #3f3d3a;
    max-width: 90%;
    font-weight: 400;
}

.hero-highlight {
    background: #54331d0c;
    border-left: 5px solid var(--primary-dark);
    padding: 18px 25px;
    border-radius: 20px;
    margin: 30px 0 20px;
}

.hero-highlight p {
    font-size: 1.2rem;
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 500;
}

.hero-highlight i {
    color: #c2412c;
    font-size: 2rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #5b4d40;
}

.hero-image {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px #54331d20);
    border-radius: 20px;
}

/* -------------------- COUNTRY GRID -------------------- */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 60px 0 20px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    background: var(--primary-dark);
    margin-top: 8px;
    border-radius: 4px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 24px;
    margin: 40px 0 20px;
}

.country-card {
    background: white;
    border-radius: 30px;
    padding: 28px 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid #eadbcf;
    transition: all 0.2s;
}

.country-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-dark);
}

.country-card i {
    font-size: 2.5rem;
    color: var(--primary-dark);
    opacity: 0.75;
    margin-bottom: 12px;
}

.country-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3a2c1e;
}

.country-card p {
    font-size: 0.9rem;
    color: #7a6a5a;
    margin-top: 8px;
}

/* -------------------- SERVICES / FEATURES -------------------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature {
    background: white;
    border-radius: 28px;
    padding: 35px 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid #e5cfbf;
}

.feature i {
    font-size: 2.4rem;
    background: #54331d0c;
    padding: 18px;
    border-radius: 60px;
    color: var(--primary-dark);
}

.feature h3 {
    font-size: 1.6rem;
    margin: 20px 0 12px;
    color: #2f2a25;
}

.feature p {
    color: #5f5247;
}

/* emergency banner */
.emergency-banner {
    background: linear-gradient(135deg, #54331d 0%, #7a4f2d 100%);
    border-radius: 40px;
    padding: 50px 40px;
    color: white;
    margin: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.emergency-banner h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

.emergency-banner h2 i {
    margin-right: 16px;
    color: #ffbc8c;
}

.emergency-banner .phone-big {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: #ffffff20;
    padding: 15px 35px;
    border-radius: 70px;
    backdrop-filter: blur(5px);
}

.emergency-banner .phone-big i {
    margin-right: 12px;
    font-size: 2.8rem;
}

/* footer */
.footer {
    border-top: 2px solid #dacfc4;
    padding: 40px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4f3f30;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .social a {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-left: 18px;
    transition: 0.2s;
}

.footer .social a:hover {
    color: #a7552c;
}

.services-description {
    background: #54331d08;
    border-radius: 30px;
    padding: 40px;
    margin-top: 40px;
    border-left: 5px solid var(--primary-dark);
}

.services-description p {
    font-size: 1.2rem;
    color: #2f2a25;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-description strong {
    color: var(--primary-dark);
}

/* ---------- REDESIGNED EMERGENCY BANNER — MATCHING BRAND COLORS (#54331d) + EMAIL ---------- */
.emergency-banner {
    background: linear-gradient(145deg, #54331d 0%, #7a4f2d 100%);
    border-radius: 48px;
    padding: 3.5rem 4rem;
    margin: 80px 0;
    color: white;
    box-shadow: 0 30px 40px -20px rgba(84, 51, 29, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 30%, rgba(255, 215, 150, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.emergency-banner::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 235, 200, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.banner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.banner-left {
    max-width: 480px;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff3e0;
}

.banner-tag i {
    font-size: 1rem;
    color: #ffbc8c;
}

.banner-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #f8efe8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-left p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #f5e8dd;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 70px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.2s ease;
    cursor: default;
    backdrop-filter: blur(8px);
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffbc8c;
    transform: translateY(-2px);
}

.channel-icon {
    font-size: 1.8rem;
    color: #ffbc8c;
    width: 40px;
    text-align: center;
}

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

.channel-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    color: #ffdec2;
}

.channel-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.channel-value i {
    font-size: 1.2rem;
    margin-left: 6px;
    opacity: 0.7;
}

.channel-value:hover {
    color: #ffbc8c;
}

.badge-24-7 {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 60px;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 188, 140, 0.4);
    white-space: nowrap;
    color: #ffdec2;
}

.badge-24-7 i {
    color: #ffbc8c;
}

/* responsive for new banner */
@media (max-width: 900px) {
    .emergency-banner {
        padding: 2.5rem 1.8rem;
    }
    .banner-left h2 {
        font-size: 2.4rem;
    }
    .channel-value {
        font-size: 1.2rem;
    }
    .channel-item {
        padding: 0.6rem 1.2rem;
    }
}

/* responsive */
@media (max-width: 800px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .navbar {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

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

    .emergency-banner .phone-big {
        font-size: 2rem;
    }
}
