/* =====================================
   DEVGROUPS GO FAST INSURANCE
   MASTER STYLESHEET
===================================== */

:root{

    --navy:#0a1628;
    --navy-light:#12233d;

    --gold:#c9982a;
    --gold-light:#e8b84b;

    --white:#ffffff;

    --gray:#f5f7fa;
    --gray-dark:#6b7280;

    --text:#e5e7eb;

    --border:rgba(255,255,255,.08);

    --shadow:
    0 15px 40px rgba(0,0,0,.25);

    --radius:16px;

    --transition:.3s ease;

}

/* ===========================
RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--navy);

    color:var(--white);

    font-family:
    'DM Sans',
    sans-serif;

    overflow-x:hidden;

    line-height:1.7;

}

/* ===========================
CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/* ===========================
LINKS
=========================== */

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

/* ===========================
SECTION
=========================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--gold);

    font-size:.9rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:3rem;

    margin-top:15px;

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#cbd5e1;

}

/* ===========================
BUTTONS
=========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 32px;

    border-radius:10px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:
    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light));

    color:var(--navy);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px
    rgba(201,152,42,.4);

}

.btn-outline{

    border:1px solid
    rgba(255,255,255,.2);

    color:#fff;

}

.btn-outline:hover{

    border-color:var(--gold);

    color:var(--gold);

}

/* ===========================
HEADER
=========================== */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:
    rgba(10,22,40,.95);

    backdrop-filter:blur(15px);

    border-bottom:
    1px solid rgba(255,255,255,.05);

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:85px;

}

/* ===========================
LOGO
=========================== */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo-box{

    width:52px;

    height:52px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light));

    color:var(--navy);

    font-weight:800;

    font-size:1.2rem;

}

.logo-text h2{

    color:#fff;

    font-size:1.4rem;

    line-height:1;

}

.logo-text span{

    color:var(--gold);

    font-size:.75rem;

    letter-spacing:1px;

}

/* ===========================
MENU
=========================== */

.main-nav ul{

    display:flex;

    gap:30px;

    list-style:none;

}

.main-nav ul li{

    position:relative;

}

.main-nav ul li a{

    color:#fff;

    font-size:.95rem;

    font-weight:500;

}

.main-nav ul li a:hover{

    color:var(--gold);

}

/* ===========================
DROPDOWN
=========================== */

.dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    min-width:260px;

    background:var(--navy);

    border:1px solid
    rgba(255,255,255,.08);

    border-radius:12px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    padding:12px 0;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    padding:12px 20px;

}

/* ===========================
HEADER BUTTONS
=========================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:15px;

}

.call-btn{

    color:#fff;

    font-weight:600;

}

.call-btn:hover{

    color:var(--gold);

}

.quote-btn{

    background:
    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light));

    color:var(--navy);

    padding:12px 24px;

    border-radius:8px;

    font-weight:700;

}

.quote-btn:hover{

    transform:translateY(-2px);

}

/* ===========================
MOBILE BUTTON
=========================== */

.mobile-menu-btn{

    display:none;

    background:none;

    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/* ===========================
HERO
=========================== */

.page-hero{

    min-height:70vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #060e1d,
    #0a1628,
    #12233d);

    padding-top:120px;

}

.page-hero h1{

    font-size:4rem;

    margin-bottom:20px;

}

.page-hero p{

    max-width:850px;

    margin:auto;

    color:#d1d5db;

    font-size:1.1rem;

}

/* ===========================
CARDS
=========================== */

.card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:var(--radius);

    padding:30px;

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    border-color:
    rgba(201,152,42,.4);

    box-shadow:var(--shadow);

}

/* =====================================
   ABOUT PAGE
===================================== */

.about-story{

    background:#0d1b31;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-content h2{

    font-size:2.8rem;

    margin-bottom:25px;

}

.about-content p{

    color:#cbd5e1;

    margin-bottom:20px;

}

.about-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

/* =====================================
   FOUNDER SECTION
===================================== */

.founder-section{

    background:var(--navy);

}

.founder-grid{

    display:grid;

    grid-template-columns:400px 1fr;

    gap:80px;

    align-items:center;

}

.founder-image img{

    border-radius:24px;

    border:3px solid var(--gold);

}

.founder-content span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

}

.founder-content h2{

    font-size:3rem;

    margin:15px 0;

}

.founder-content p{

    color:#d1d5db;

}

.founder-content blockquote{

    margin-top:30px;

    padding:25px;

    border-left:4px solid var(--gold);

    background:
    rgba(255,255,255,.04);

    font-style:italic;

    font-size:1.1rem;

}

/* =====================================
   MISSION VISION
===================================== */

.mission-vision{

    background:#0d1b31;

}

.mv-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.mv-card{

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

}

.mv-card h3{

    color:var(--gold);

    margin-bottom:20px;

    font-size:2rem;

}

.mv-card p{

    color:#d1d5db;

}

/* =====================================
   TIMELINE
===================================== */

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    width:4px;

    height:100%;

    background:var(--gold);

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    padding:20px 40px;

    position:relative;

}

.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;

}

.timeline-item::before{

    content:"";

    width:18px;

    height:18px;

    background:var(--gold);

    border-radius:50%;

    position:absolute;

    top:30px;

}

.timeline-item:nth-child(odd)::before{

    right:-9px;

}

.timeline-item:nth-child(even)::before{

    left:-9px;

}

.timeline-box{

    background:
    rgba(255,255,255,.04);

    padding:25px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

}

.timeline-box h3{

    color:var(--gold);

    margin-bottom:10px;

}

/* =====================================
   STATS
===================================== */

.stats{

    background:
    linear-gradient(
    135deg,
    #091220,
    #12233d);

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

}

.stat-card h2{

    font-size:4rem;

    color:var(--gold);

}

.stat-card p{

    color:#cbd5e1;

}

/* =====================================
   COVERAGE AREA
===================================== */

.coverage{

    background:#0d1b31;

}

.coverage-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:25px;

}

.city-card{

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:30px;

    text-align:center;

    border-radius:15px;

}

.city-card:hover{

    border-color:var(--gold);

}

/* =====================================
   TESTIMONIALS
===================================== */

.testimonials{

    background:var(--navy);

}

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:
    rgba(255,255,255,.04);

    border-radius:18px;

    padding:30px;

    border:1px solid rgba(255,255,255,.08);

}

.stars{

    color:gold;

    margin-bottom:15px;

}

.testimonial-card p{

    color:#d1d5db;

    margin-bottom:20px;

}

.client-name{

    color:var(--gold);

    font-weight:700;

}

/* =====================================
   FAQ
===================================== */

.faq-item{

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.faq-question{

    background:
    rgba(255,255,255,.04);

    padding:20px;

    cursor:pointer;

    font-weight:600;

}

.faq-answer{

    padding:20px;

    display:none;

    background:#12233d;

}

.faq-item.active .faq-answer{

    display:block;

}

/* =====================================
   CONTACT FORM
===================================== */

.contact-form{

    background:
    rgba(255,255,255,.04);

    border-radius:20px;

    padding:40px;

    border:1px solid rgba(255,255,255,.08);

}

.form-group{

    margin-bottom:20px;

}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:15px;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.1);

    background:#12233d;

    color:#fff;

}

.form-group textarea{

    min-height:150px;

}

/* =====================================
   BLOG
===================================== */

.blog-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.blog-card{

    background:
    rgba(255,255,255,.04);

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.blog-content{

    padding:25px;

}

.blog-content h3{

    margin-bottom:15px;

}

.blog-content p{

    color:#d1d5db;

}

/* =====================================
   FOOTER
===================================== */

.site-footer{

    background:#060d19;

    padding:90px 0 40px;

    border-top:
    1px solid rgba(255,255,255,.05);

}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.footer-logo-box{

    width:55px;

    height:55px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light));

    color:var(--navy);

    font-weight:800;

}

.footer-col h4{

    margin-bottom:20px;

    color:var(--gold);

}

.footer-col ul{

    list-style:none;

}

.footer-col ul li{

    margin-bottom:12px;

}

.footer-col ul li a{

    color:#cbd5e1;

}

.footer-col ul li a:hover{

    color:var(--gold);

}

.footer-about{

    color:#cbd5e1;

    margin-bottom:20px;

}

.footer-contact p{

    margin-bottom:10px;

    color:#cbd5e1;

}

.footer-locations{

    margin-top:60px;

    text-align:center;

}

.footer-locations h4{

    color:var(--gold);

    margin-bottom:20px;

}

.location-tags{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

}

.location-tags span{

    padding:10px 18px;

    background:
    rgba(255,255,255,.05);

    border-radius:30px;

}

.footer-partners{

    margin-top:50px;

    text-align:center;

}

.partner-list{

    color:#cbd5e1;

    line-height:2;

}

.footer-social{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

}

.footer-social a{

    color:#fff;

}

.footer-social a:hover{

    color:var(--gold);

}

.footer-bottom{

    margin-top:50px;

    padding-top:30px;

    border-top:
    1px solid rgba(255,255,255,.05);

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

/* =====================================
   ANIMATIONS
===================================== */

.fade-up{

    animation:
    fadeUp 1s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}