:root {
    /* New Americas Warranty Inc Brand Colors */
    --aw-blue: #063352;
    --aw-blue-dark: #042238;
    --aw-red: #b0131d;
    --aw-red-dark: #8c0f17;

    /* Complementary Accents */
    --aw-gold: #fca311;
    --aw-gold-light: #ffb732;

    /* Base Colors */
    --text-dark: #2b3445;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--aw-blue);
}

/* --- Hero Section --- */

.hero-section {
    /* Using the new AW Blue for the overlay gradient */
    background: linear-gradient(135deg, rgba(6, 51, 82, 0.95), rgba(4, 34, 56, 0.95)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Brand Cards --- */

.brand-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--aw-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 51, 82, 0.15);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-icon-wrapper {

    color: var(--aw-red);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto .70rem;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-icon-wrapper {
    color: white;
    transform: scale(1.1);
}

.brand-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.brand-card p {
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

/* --- Buttons --- */

.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-brand {
    background-color: transparent;
    color: var(--aw-blue);
    border: 2px solid var(--aw-blue);
    margin-top: 1.5rem;
}

.btn-brand:hover {
    background-color: var(--aw-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 51, 82, 0.2);
}

.btn-primary-red {
    background-color: var(--aw-red);
    color: white;
    border: 2px solid var(--aw-red);
}

.btn-primary-red:hover {
    background-color: var(--aw-red-dark);
    border-color: var(--aw-red-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 19, 29, 0.3);
}

/* --- Partnership Section --- */

.partner-section {
    background-color: var(--aw-blue);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partner-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.partner-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--aw-gold);
    display: inline-block;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-phone:hover {
    color: var(--aw-gold-light);
}

.partner-features i {
    color: var(--aw-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Navbar */

.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--aw-blue) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.btn-nav-claim {
    background-color: transparent;
    color: var(--aw-blue);
    border: 2px solid var(--aw-blue);
    /* Slightly slimmer padding to fit nicely in the navbar */
    padding: 10px 24px;
}

.btn-nav-claim:hover {
    background-color: var(--aw-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 51, 82, 0.2);
}
