/* ==========================================
   Global Styles & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #002F5E;
    --orange: #FF7A00;
    --charcoal: #333333;
    --light-gray: #f8f9fa;
    --light-blue: #e8f4f8;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Header (Sticky Bar)
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 47, 94, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.phone-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-link:hover {
    color: var(--orange);
    transform: scale(1.05);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c1a 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, var(--orange) 100%);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy) 0%, #004080 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 6px 20px rgba(0, 47, 94, 0.2);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
}

.btn-highlight {
    background-color: var(--white);
    color: var(--navy);
    font-size: 20px;
    padding: 20px 50px;
    border: 3px solid var(--white);
}

.btn-highlight:hover {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.05);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: linear-gradient(135deg, #001529 0%, var(--navy) 50%, #003d6e 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 122, 0, 0.5);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    z-index: 1;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg);
}

.highlight-text {
    flex: 1;
    text-align: left;
    z-index: 1;
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.highlight-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* ==========================================
   Coverage Section
   ========================================== */
.coverage-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 19px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--charcoal);
    line-height: 1.7;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.coverage-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8fbff 100%);
    padding: 40px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e3f2fd;
    box-shadow: 0 5px 15px rgba(0, 47, 94, 0.08);
}

.coverage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 47, 94, 0.15);
    border-color: var(--orange);
}

.coverage-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.coverage-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.coverage-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--navy) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

/* ==========================================
   CTA Highlight Section
   ========================================== */
.cta-highlight {
    background: linear-gradient(135deg, #001529 0%, var(--navy) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 122, 0, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 72px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-highlight h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-highlight p {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.phone-number {
    display: block;
    font-size: 38px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 30px;
    transition: all 0.3s;
    text-shadow: 0 2px 10px rgba(255, 122, 0, 0.3);
    letter-spacing: 1px;
}

.phone-number:hover {
    color: #ff9533;
    transform: scale(1.05);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 4px solid var(--orange);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 122, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    position: relative;
    z-index: 1;
}

/* ==========================================
   Legal Section
   ========================================== */
.legal-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.legal-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.legal-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 15px;
}

.legal-item p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(135deg, #001529 0%, var(--navy) 100%);
    color: var(--white);
    padding: 50px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, #ff9533 100%);
}

.footer-main {
    text-align: center;
    margin-bottom: 30px;
}

.footer-cta {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-cta a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-cta a:hover {
    color: #ff9533;
}

.footer-links {
    text-align: center;
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--orange);
}

.separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .logo {
        font-size: 22px;
        text-align: left;
    }

    .header-right {
        flex-direction: row;
        gap: 12px;
        width: auto;
        align-items: center;
    }

    .phone-link {
        font-size: 15px;
        white-space: nowrap;
    }

    .header-right .btn-primary {
        display: none;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-intro {
        font-size: 16px;
    }

    .hero-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .highlight-item {
        padding: 20px;
        gap: 15px;
    }

    .highlight-icon {
        font-size: 40px;
    }

    .highlight-title {
        font-size: 16px;
    }

    .highlight-desc {
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-large {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }

    .coverage-section,
    .why-choose,
    .testimonials {
        padding: 60px 0;
    }

    .coverage-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-item,
    .benefit-item {
        padding: 30px 25px;
    }

    .coverage-icon {
        font-size: 48px;
    }

    .benefit-icon {
        font-size: 56px;
    }

    .cta-highlight {
        padding: 50px 0;
    }

    .cta-highlight h2 {
        font-size: 26px;
    }

    .cta-highlight p {
        font-size: 17px;
    }

    .phone-number {
        font-size: 26px;
    }

    .cta-icon {
        font-size: 60px;
    }

    .btn-highlight {
        font-size: 17px;
        padding: 16px 35px;
    }

    .testimonial-item {
        padding: 35px 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .legal-section {
        padding: 50px 0;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-item {
        padding: 30px;
    }

    .legal-item h3 {
        font-size: 20px;
    }

    .legal-item p {
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-cta {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 12px 0;
    }

    .header-content {
        gap: 8px;
    }

    .logo {
        font-size: 18px;
    }

    .phone-link {
        font-size: 13px;
    }

    .header-right .btn-primary {
        display: none;
    }

    .hero {
        padding: 50px 0 90px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .highlight-item {
        padding: 12px 5px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        font-size: 36px;
    }

    .highlight-title {
        font-size: 15px;
    }

    .highlight-desc {
        font-size: 12px;
    }

    .highlight-text {
        text-align: center;
    }

    .btn {
        font-size: 14px;
        padding: 11px 20px;
    }

    .btn-large {
        font-size: 15px;
        padding: 13px 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-intro {
        font-size: 15px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .coverage-section,
    .why-choose,
    .testimonials {
        padding: 50px 0;
    }

    .coverage-item,
    .benefit-item {
        padding: 25px 20px;
    }

    .coverage-icon {
        font-size: 42px;
    }

    .coverage-item h3 {
        font-size: 18px;
    }

    .coverage-item p {
        font-size: 14px;
    }

    .benefit-icon {
        font-size: 48px;
    }

    .benefit-item h3 {
        font-size: 17px;
    }

    .cta-highlight {
        padding: 40px 0;
    }

    .cta-icon {
        font-size: 50px;
    }

    .cta-highlight h2 {
        font-size: 22px;
    }

    .cta-highlight p {
        font-size: 15px;
    }

    .phone-number {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .btn-highlight {
        font-size: 15px;
        padding: 14px 28px;
    }

    .testimonials-grid {
        gap: 25px;
    }

    .testimonial-item {
        padding: 28px 22px;
    }

    .testimonial-item::before {
        font-size: 60px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author {
        font-size: 14px;
    }

    .legal-section {
        padding: 40px 0;
    }

    .legal-item {
        padding: 25px;
    }

    .legal-item h3 {
        font-size: 18px;
    }

    .legal-item p {
        font-size: 13px;
    }

    .footer {
        padding: 35px 0 20px;
    }

    .footer-cta {
        font-size: 16px;
    }

    .footer-links {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
