/* --- THEME 4: URGENCY CSS --- */

/* 1. Variables & Colors */
:root {
    --primary: #00509D;       /* Royal Blue */
    --secondary: #FDFDFF;     /* Off-White Bg */
    --accent: #E63946;        /* Alert Red (Action) */
    --text-dark: #1D3557;
    --white: #ffffff;
    --border-radius: 4px;     /* Slightly rounded */
    --section-bg: var(--secondary);
    --skew: -3deg;            /* Dynamic slant */
}

/* 2. Base Resets & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3 { font-weight: 900; font-style: italic; text-transform: uppercase; }

/* 3. Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.section-bg { background-color: var(--section-bg); transform: skewY(var(--skew)); margin: 50px 0; padding: 100px 0; }
.section-bg > .container { transform: skewY(3deg); } /* un-skew content */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.accent-text { color: var(--accent); }

/* 4. Buttons & Inputs (Urgent Style) */
.btn {
    display: inline-block; padding: 18px 40px; background: var(--accent); color: var(--white);
    font-weight: 900; text-transform: uppercase; border: none; cursor: pointer;
    border-radius: var(--border-radius); 
    box-shadow: 0 10px 20px -5px rgba(230, 57, 70, 0.5); font-style: italic;
    transition: 0.2s;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 15px 30px -5px rgba(230, 57, 70, 0.7); }
.full-width { width: 100%; font-size: 1.1rem; }

input, textarea {
    width: 100%; padding: 15px; border: 2px solid #e1e5ee; background: #f4f7fc;
    border-radius: var(--border-radius); font-family: inherit; margin-bottom: 15px; font-weight: 700;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }

/* 5. Header (Bold) */
header { background: var(--primary); padding: 15px 0; color: var(--white); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.8rem; color: var(--white); font-style: italic; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.nav-links a:hover { color: var(--accent); }
.nav-btn { background: var(--white); color: var(--accent); box-shadow: none; padding: 12px 25px;}
.nav-btn:hover { background: var(--accent); color: var(--white); }
.mobile-toggle { display: none; font-size: 1.5rem; }

/* 6. Hero Section (High Impact) */
.hero { 
    background: url('https://placehold.co/1920x800/00509D/ffffff?text=ACTION') center/cover;
    padding: 120px 0 150px; position: relative; color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%); /* Angled bottom */
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(45deg, rgba(0, 80, 157, 0.95), rgba(29, 53, 87, 0.9)); }
.hero-layout { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.hero-text h5 .accent-text { background: var(--accent); color: var(--white); padding: 5px 15px; display: inline-block; transform: skewX(-10deg); }
.hero-text h1 { font-size: 4rem; line-height: 1; margin: 25px 0; text-shadow: 3px 3px 0 var(--primary); }
.hero-benefits li { margin-bottom: 15px; font-weight: 700; display: flex; align-items: center; font-size: 1.1rem; }
.hero-benefits li::before { content: "►"; color: var(--accent); margin-right: 15px; }

.hero-form {
    background: var(--white); padding: 35px; color: var(--text-dark); flex: 0 0 480px;
    border-radius: var(--border-radius);
    border: 4px solid var(--accent); /* Red border */
    box-shadow: 20px 20px 0px rgba(0,0,0,0.2); /* Hard shadow */
    transform: rotate(2deg); /* Slight rotation for attention */
}
.hero-form h3 { color: var(--accent); font-size: 1.5rem; margin-bottom: 25px; }

/* 7. Trust Bar */
.trust-bar { background: var(--accent); color: var(--white); padding: 20px 0; text-align: center; font-weight: 900; text-transform: uppercase; font-size: 1.1rem; margin-top: -60px; position: relative; z-index: 10; transform: skewY(var(--skew)); }
.trust-bar .container { transform: skewY(3deg); }

/* 8. Services Grid (Dynamic Cards) */
.section-header h2 { font-size: 2.5rem; color: var(--primary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card {
    background: var(--white); border-radius: var(--border-radius); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; border-bottom: 4px solid var(--primary);
}
.service-card:hover { transform: translateY(-10px) skewX(-2deg); border-bottom-color: var(--accent); }
.service-img { height: 200px; background-size: cover; background-position: center; clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%); }
.service-content { padding: 25px; }
.service-content h3 { color: var(--primary); }
.read-more-link { color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; display: flex; align-items: center; }
.read-more-link::after { content:'→'; margin-left: 5px; transition: 0.3s; }
.service-card:hover .read-more-link::after { margin-left: 15px; }

/* 9. Why Us (Hub & Spoke - Aggressive View) */
.section-title { font-size: 3rem; color: var(--primary); }
.hub-container { display: flex; justify-content: center; align-items: center; gap: 30px; margin-top: 60px; }
.hub-center { flex: 0 0 180px; height: 180px; background: var(--accent); color: var(--white); display: flex; justify-content: center; align-items: center; font-weight: 900; font-style: italic; font-size: 1.2rem; box-shadow: 10px 10px 0 var(--primary); border-radius: var(--border-radius);}
.feature-box {
    background: var(--white); border: 2px solid #eee; padding: 25px; text-align: left;
    position: relative; transition: 0.3s; border-left: 5px solid var(--primary);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
}
.feature-box:hover { border-left-color: var(--accent); transform: translateX(5px); }
.feature-box h4 { color: var(--primary); }
.hub-column { display: flex; flex-direction: column; gap: 30px; flex: 1; max-width: 300px; }

/* 10. Footer */
footer { background: var(--text-dark); color: #ccc; padding-top: 100px; clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%); margin-top: -80px;}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding-bottom: 50px; }
footer h3 { color: var(--white); margin-bottom: 25px; font-style: italic;}
footer a:hover { color: var(--accent); }
.footer-phone { font-size: 1.8rem; color: var(--accent); font-weight: 900; font-style: italic; }
.copyright { background: #111; padding: 20px 0; text-align: center; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; } .mobile-toggle { display: block; }
    .hero { clip-path: none; padding-bottom: 80px; }
    .section-bg { transform: none; margin: 0; } .section-bg > .container { transform: none; }
    .hero-layout, .hub-container { flex-direction: column; } .hero-form, .hub-column { width: 100%; max-width: none; transform: none; }
    footer { clip-path: none; margin-top: 0; }
    .trust-bar { transform: none; margin-top: 0; } .trust-bar .container { transform: none; }
}
