/* ==========================
GLOBAL
========================== */

:root {

    --navy: #07235B;
    --orange: #FF7A00;
    --light-bg: #F8FAFC;
    --text: #0F172A;
    --grey: #64748B;
    --white: #ffffff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.aipm-container{

    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ==========================
HEADER
========================== */

.aipm-header{

    position:sticky;
    top:0;
    z-index:999;

    background:#fff;

    border-bottom:1px solid #eaeaea;
}

.aipm-header .aipm-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:85px;
}

.aipm-logo img{

    height:65px;
    width:auto;
}

.aipm-header-right{

    display:flex;
    align-items:center;
    gap:20px;
}

.aipm-phone-box{

    text-align:right;
}

.aipm-phone-box span{

    display:block;
    font-size:12px;
    color:var(--grey);
}

.aipm-phone-box a{

    font-size:20px;
    font-weight:700;
    color:var(--navy);
}

/* ==========================
BUTTONS
========================== */

.aipm-btn{

    padding:14px 26px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.aipm-btn-primary{

    background:var(--orange);
    color:#fff;
}

.aipm-btn-primary:hover{

    transform:translateY(-2px);
}

.aipm-btn-secondary{

    border:2px solid var(--navy);
    color:var(--navy);
}

.aipm-btn-secondary:hover{

    background:var(--navy);
    color:#fff;
}
/* ===================================
HEADER MOBILE
=================================== */

@media (max-width:768px){

    .aipm-header{

        padding:10px 0;
    }

    .aipm-header .aipm-container{

        height:auto;

        display:flex;

        align-items:center;

        justify-content:space-between;
    }

    /* Logo */

    .aipm-logo img{

        height:50px;
    }

    /* Hide Phone Number Box */

    

    /* Right Side */

   

    /* Button */

    .aipm-btn-primary{

        padding:12px 18px;

        font-size:14px;

        border-radius:10px;

        white-space:nowrap;
    }
}

@media (max-width:480px){

    .aipm-logo img{

        height:42px;
    }

    .aipm-btn-primary{

        padding:10px 14px;

        font-size:13px;
    }
}

/* ==========================
HERO
========================== */

.aipm-hero{

    padding:80px 0;

    background:
    radial-gradient(
    circle at right,
    #fff0e0,
    transparent 60%
    );
}

.aipm-hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.aipm-top-badges{

    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.aipm-top-badges span{

    background:#fff;
    padding:10px 14px;
    border-radius:50px;

    font-size:13px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

.aipm-hero-content h1{

    font-size:58px;
    line-height:1.1;
    color:var(--navy);
    margin-bottom:20px;
}

.aipm-hero-content h1 span{

    color:var(--orange);
}

.aipm-hero-content p{

    font-size:18px;
    color:var(--grey);

    margin-bottom:30px;

    max-width:600px;
}

.aipm-trust-points{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;

    margin-bottom:35px;
}

.aipm-trust-points div{

    background:#fff;
    padding:14px;

    border-radius:10px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

.aipm-hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* ==========================
QUOTE CARD
========================== */

.aipm-quote-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    margin-bottom:25px;
}

.aipm-quote-card h3{

    margin-bottom:20px;
    color:var(--navy);
}

.aipm-quote-card form{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.aipm-quote-card input{

    height:55px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    outline:none;
}

.aipm-quote-card button{

    height:55px;

    border:none;

    background:var(--orange);

    color:#fff;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;
}

.aipm-hero-image img{

    border-radius:20px;
}

@media(max-width:991px){

    .aipm-hero-grid{

        grid-template-columns:1fr;
    }

    .aipm-hero-content{

        order:1;
    }

    .aipm-hero-right{

        order:2;
    }

    .aipm-hero-content h1{

        font-size:42px;
    }
}

@media(max-width:768px){

   

    .aipm-hero{

        padding:50px 0;
    }

    .aipm-hero-content h1{

        font-size:34px;
    }

    .aipm-trust-points{

        grid-template-columns:1fr;
    }

    .aipm-hero-buttons{

        flex-direction:column;
    }

    .aipm-btn{

        width:100%;
        text-align:center;
    }
}

/* ==========================
SECTION HEADING
========================== */

.aipm-section-heading{

    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.aipm-subtitle{

    display:inline-block;

    background:#fff4ea;
    color:var(--orange);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.aipm-section-heading h2{

    font-size:44px;
    color:var(--navy);

    margin-bottom:18px;
}

.aipm-section-heading p{

    color:var(--grey);
    line-height:1.8;
}

/* ===================================
HERO FORM UPGRADE
=================================== */

.aipm-form-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    background: #fff4ea;

    color: var(--orange);

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;
}

.aipm-quote-card h3 {

    font-size: 28px;

    color: var(--navy);

    margin-bottom: 10px;
}

.aipm-quote-card p {

    color: var(--grey);

    line-height: 1.7;

    margin-bottom: 25px;
}

.aipm-lead-form {

    display: flex;

    flex-direction: column;

    gap: 15px;
}

.aipm-lead-form input {

    height: 58px;

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    padding: 0 18px;

    font-size: 15px;

    transition: .3s ease;

    background: #fff;
}

.aipm-lead-form input:focus {

    border-color: var(--orange);

    box-shadow:
    0 0 0 4px rgba(255,122,0,.08);

    outline: none;
}

.aipm-lead-form button {

    height: 60px;

    border: none;

    border-radius: 12px;

    background: var(--orange);

    color: white;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: .3s ease;
}

.aipm-lead-form button:hover {

    transform: translateY(-2px);

    box-shadow:
    0 12px 30px rgba(255,122,0,.25);
}

.aipm-form-trust {

    display: flex;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 18px;

    border-top: 1px solid #edf2f7;
}

.aipm-form-trust span {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    color: var(--grey);
}

.aipm-form-trust i {

    color: var(--orange);
}


/* ==========================
WHY US
========================== */

.aipm-why-us{

    padding:100px 0;

    background:#f8fafc;
}

.aipm-why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.aipm-why-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    transition:.4s ease;

    border:1px solid #edf2f7;
}

.aipm-why-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.aipm-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#fff4ea;

    margin-bottom:25px;
}

.aipm-icon i{

    font-size:28px;
    color:var(--orange);
}

.aipm-why-card h3{

    font-size:22px;
    color:var(--navy);

    margin-bottom:15px;
}

.aipm-why-card p{

    color:var(--grey);

    line-height:1.8;
}

@media(max-width:991px){

    .aipm-why-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .aipm-why-us{

        padding:70px 0;
    }

    .aipm-section-heading h2{

        font-size:32px;
    }

    .aipm-why-grid{

        grid-template-columns:1fr;
    }

}

/* ===================================
SERVICES SECTION
=================================== */

.aipm-services {

    position: relative;

    padding: 120px 0;

    background: #07235B;

    overflow: hidden;
}

/* Decorative Glow */

.aipm-services::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(255,122,0,.08);

    top: -250px;
    right: -250px;
}

.aipm-services::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255,255,255,.03);

    bottom: -150px;
    left: -150px;
}

/* Heading */

.aipm-services-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 850px;

    margin: 0 auto 80px;
}

.aipm-services-tag {

    display: inline-block;

    color: #FF7A00;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.aipm-services-heading h2 {

    font-size: 52px;

    color: #fff;

    margin-bottom: 20px;

    line-height: 1.2;
}

.aipm-services-heading p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    font-size: 17px;
}

/* Grid */

.aipm-services-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

/* Stagger Layout */

.aipm-service-card:nth-child(2),
.aipm-service-card:nth-child(5){

    margin-top: 60px;
}

/* Card */

.aipm-service-card {

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 24px;

    padding: 40px 35px;

    transition: .4s ease;

    min-height: 320px;
}

.aipm-service-card:hover {

    transform: translateY(-12px);

    border-color: #FF7A00;

    box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

/* Icon */

.aipm-service-icon {

    width: 80px;
    height: 80px;

    border-radius: 20px;

    background: rgba(255,122,0,.15);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}

.aipm-service-icon i {

    color: #FF7A00;

    font-size: 34px;
}

/* Title */

.aipm-service-card h3 {

    color: #fff;

    font-size: 24px;

    margin-bottom: 15px;
}

/* Description */

.aipm-service-card p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    margin-bottom: 30px;
}

/* Link */

.aipm-service-card a {

    color: #FF7A00;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;
}

.aipm-service-card a i {

    transition: .3s ease;
}

.aipm-service-card:hover a i {

    transform: translateX(6px);
}

/* Bottom CTA */

.aipm-services-bottom {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-top: 80px;
}

.aipm-services-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 36px;

    background: #FF7A00;

    color: #fff;

    text-decoration: none;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s ease;
}

.aipm-services-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(255,122,0,.3);
}

@media (max-width: 991px){

    .aipm-services-grid{

        grid-template-columns: repeat(2,1fr);
    }

    .aipm-service-card:nth-child(2),
    .aipm-service-card:nth-child(5){

        margin-top: 0;
    }

    .aipm-services-heading h2{

        font-size: 42px;
    }
}

@media (max-width: 768px){

    .aipm-services{

        padding: 80px 0;
    }

    .aipm-services-grid{

        grid-template-columns: 1fr;
    }

    .aipm-services-heading h2{

        font-size: 34px;
    }

    .aipm-service-card{

        min-height: auto;

        padding: 30px;
    }

    .aipm-service-icon{

        width: 70px;
        height: 70px;
    }

    .aipm-service-icon i{

        font-size: 30px;
    }
}

/* ===================================
PROCESS SECTION
=================================== */

.aipm-process {

    padding: 120px 0;

    background: #f8fafc;
}

.aipm-process-heading {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 80px;
}

.aipm-process-tag {

    display: inline-block;

    padding: 10px 18px;

    background: #fff4ea;

    color: #FF7A00;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.aipm-process-heading h2 {

    font-size: 48px;

    color: #07235B;

    margin-bottom: 18px;
}

.aipm-process-heading p {

    color: #64748B;

    line-height: 1.8;
}

/* Grid */

.aipm-process-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;
}

/* Connecting Line */

.aipm-process-wrapper::before {

    content: "";

    position: absolute;

    top: 60px;
    left: 12%;

    width: 76%;
    height: 3px;

    background: #e2e8f0;

    z-index: 0;
}

/* Card */

.aipm-process-card {

    position: relative;

    background: white;

    padding: 35px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    z-index: 2;

    transition: .35s;
}

.aipm-process-card:hover {

    transform: translateY(-10px);
}

/* Step Number */

.aipm-step-number {

    position: absolute;

    top: -15px;
    right: 20px;

    font-size: 70px;

    font-weight: 800;

    color: rgba(7,35,91,.05);

    line-height: 1;
}

/* Icon */

.aipm-step-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #07235B;

    display: flex;

    align-items: center;

    justify-content: center;
}

.aipm-step-icon i {

    color: #fff;

    font-size: 34px;
}

.aipm-process-card h3 {

    color: #07235B;

    font-size: 22px;

    margin-bottom: 15px;
}

.aipm-process-card p {

    color: #64748B;

    line-height: 1.8;
}

@media(max-width:991px){

    .aipm-process-wrapper{

        grid-template-columns:repeat(2,1fr);
    }

    .aipm-process-wrapper::before{

        display:none;
    }
}

@media(max-width:768px){

    .aipm-process{

        padding:80px 0;
    }

    .aipm-process-wrapper{

        grid-template-columns:1fr;
    }

    .aipm-process-heading h2{

        font-size:34px;
    }
}

/* ===================================
SERVICE AREAS
=================================== */

.aipm-routes {

    padding: 120px 0;

    background: #ffffff;
}

/* Heading */

.aipm-routes-heading {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 70px;
}

.aipm-routes-tag {

    display: inline-block;

    padding: 10px 18px;

    background: #fff4ea;

    color: #FF7A00;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.aipm-routes-heading h2 {

    font-size: 48px;

    color: #07235B;

    margin-bottom: 20px;
}

.aipm-routes-heading p {

    color: #64748B;

    line-height: 1.8;
}

/* Grid */

.aipm-routes-wrapper {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;
}

/* Route Card */

.aipm-route-card {

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    transition: .35s ease;
}

.aipm-route-card:hover {

    transform: translateY(-8px);

    border-color: #FF7A00;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.aipm-route-card span {

    display: block;

    color: #64748B;

    font-size: 14px;

    margin-bottom: 12px;
}

.aipm-route-card i {

    color: #FF7A00;

    font-size: 22px;

    margin-bottom: 12px;
}

.aipm-route-card strong {

    color: #07235B;

    font-size: 20px;

    font-weight: 700;
}

/* Bottom Box */

.aipm-routes-bottom {

    margin-top: 70px;
}

.aipm-pan-india {

    background: linear-gradient(
        135deg,
        #07235B,
        #0b317f
    );

    border-radius: 24px;

    padding: 40px;

    display: flex;

    align-items: center;

    gap: 25px;
}

.aipm-pan-icon {

    width: 90px;
    height: 90px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    display: flex;

    align-items: center;

    justify-content: center;
}

.aipm-pan-icon i {

    color: #FF7A00;

    font-size: 36px;
}

.aipm-pan-india h3 {

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 10px;
}

.aipm-pan-india p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;
}

@media(max-width:991px){

    .aipm-routes-wrapper{

        grid-template-columns:repeat(2,1fr);
    }

    .aipm-pan-india{

        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:768px){

    .aipm-routes{

        padding:80px 0;
    }

    .aipm-routes-heading h2{

        font-size:34px;
    }

    .aipm-routes-wrapper{

        grid-template-columns:1fr;
    }

    .aipm-pan-india{

        padding:30px;
    }

    .aipm-pan-india h3{

        font-size:24px;
    }
}

/* ===================================
REVIEWS
=================================== */

.aipm-reviews {

    padding: 120px 0;

    background:
    linear-gradient(
        135deg,
        #FFF7ED,
        #FFF1E6
    );
}

.aipm-reviews-heading {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 70px;
}

.aipm-reviews-tag {

    display: inline-block;

    padding: 10px 18px;

    background: rgba(255,122,0,.12);

    color: #FF7A00;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.aipm-reviews-heading h2 {

    font-size: 48px;

    color: #07235B;

    margin-bottom: 18px;
}

/* Stats */

.aipm-stats-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

    margin-bottom: 70px;
}

.aipm-stat-card {

    background: white;

    padding: 35px;

    border-radius: 20px;

    text-align: center;
}

.aipm-stat-card h3 {

    color: #FF7A00;

    font-size: 40px;

    margin-bottom: 10px;
}

.aipm-stat-card span {

    color: #64748B;
}

/* Reviews */

.aipm-reviews-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.aipm-review-card {

    background: white;

    padding: 35px;

    border-radius: 24px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);
}

.aipm-stars {

    margin-bottom: 20px;
}

.aipm-stars i {

    color: #FFB800;
}

.aipm-review-card p {

    line-height: 1.8;

    color: #64748B;

    margin-bottom: 25px;
}

.aipm-review-card h4 {

    color: #07235B;

    margin-bottom: 5px;
}


/* ===================================
REVIEWS RESPONSIVE
=================================== */

@media (max-width: 991px){

    .aipm-stats-grid{

        grid-template-columns: repeat(2,1fr);

        gap: 20px;
    }

    .aipm-reviews-grid{

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .aipm-reviews-heading h2{

        font-size: 40px;
    }

}

@media (max-width: 768px){

    .aipm-reviews{

        padding: 80px 0;
    }

    .aipm-reviews-heading{

        margin-bottom: 50px;
    }

    .aipm-reviews-heading h2{

        font-size: 32px;

        line-height: 1.3;
    }

    .aipm-reviews-heading p{

        font-size: 15px;
    }

    .aipm-stats-grid{

        grid-template-columns: 1fr 1fr;

        gap: 15px;

        margin-bottom: 50px;
    }

    .aipm-stat-card{

        padding: 25px 15px;

        border-radius: 18px;
    }

    .aipm-stat-card h3{

        font-size: 28px;

        margin-bottom: 8px;
    }

    .aipm-stat-card span{

        font-size: 13px;

        line-height: 1.5;

        display: block;
    }

    .aipm-review-card{

        padding: 25px;
    }

    .aipm-review-card p{

        font-size: 15px;

        line-height: 1.8;
    }

    .aipm-review-card h4{

        font-size: 17px;
    }

}

@media (max-width: 480px){

    .aipm-stats-grid{

        grid-template-columns: 1fr;
    }

    .aipm-stat-card{

        padding: 22px;
    }

    .aipm-stat-card h3{

        font-size: 26px;
    }

}



/* ===================================
FAQ SECTION
=================================== */

.aipm-faq {

    padding: 120px 0;

    background: #07235B;
}

.aipm-faq-grid {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 60px;

    align-items: start;
}

/* LEFT */

.aipm-faq-tag {

    display: inline-block;

    background: rgba(255,122,0,.15);

    color: #FF7A00;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}

.aipm-faq-content h2 {

    color: white;

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.aipm-faq-content p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;
}

/* Contact Box */

.aipm-faq-contact {

    margin-top: 40px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    padding: 25px;

    display: flex;

    align-items: center;

    gap: 18px;
}

.aipm-faq-contact i {

    font-size: 32px;

    color: #FF7A00;
}

.aipm-faq-contact h4 {

    color: white;

    margin-bottom: 5px;
}

.aipm-faq-contact a {

    color: #FF7A00;

    font-weight: 700;

    font-size: 20px;
}

/* FAQ ITEMS */

.aipm-faq-item {

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    margin-bottom: 18px;

    overflow: hidden;
}

.aipm-faq-question {

    width: 100%;

    background: none;

    border: none;

    cursor: pointer;

    padding: 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: white;

    font-size: 18px;

    font-weight: 600;

    text-align: left;
}

.aipm-faq-question i {

    color: #FF7A00;

    transition: .3s;
}

.aipm-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: .4s ease;
}

.aipm-faq-answer p {

    padding: 0 24px 24px;

    color: rgba(255,255,255,.75);

    line-height: 1.8;
}

/* Active */

.aipm-faq-item.active .aipm-faq-answer {

    max-height: 200px;
}

.aipm-faq-item.active i {

    transform: rotate(45deg);
}

/* ===================================
FAQ RESPONSIVE
=================================== */

@media (max-width: 991px){

    .aipm-faq-grid{

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .aipm-faq-content{

        text-align: center;
    }

    .aipm-faq-contact{

        max-width: 500px;

        margin: 40px auto 0;
    }

}

@media (max-width: 768px){

    .aipm-faq{

        padding: 80px 0;
    }

    .aipm-faq-content h2{

        font-size: 32px;
    }

    .aipm-faq-content p{

        font-size: 15px;
    }

    .aipm-faq-contact{

        padding: 20px;

        gap: 15px;

        text-align: left;
    }

    .aipm-faq-contact i{

        font-size: 26px;
    }

    .aipm-faq-contact h4{

        font-size: 16px;
    }

    .aipm-faq-contact a{

        font-size: 18px;
    }

    .aipm-faq-question{

        padding: 20px;

        font-size: 16px;

        line-height: 1.5;
    }

    .aipm-faq-answer p{

        padding: 0 20px 20px;

        font-size: 15px;
    }

}

@media (max-width: 480px){

    .aipm-faq-content{

        text-align: left;
    }

    .aipm-faq-content h2{

        font-size: 28px;
    }

    .aipm-faq-contact{

        flex-direction: row;

        align-items: flex-start;

        padding: 18px;
    }

    .aipm-faq-question{

        font-size: 15px;

        gap: 15px;
    }

    .aipm-faq-question i{

        flex-shrink: 0;
    }

}

/* ===================================
FINAL CTA SECTION
=================================== */

.aipm-final-cta {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #fff7ed 100%
    );
}

/* Decorative Shapes */

.aipm-final-cta::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
    rgba(255,122,0,.08);

    top: -220px;
    right: -150px;
}

.aipm-final-cta::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
    rgba(7,35,91,.04);

    bottom: -150px;
    left: -100px;
}

/* ===================================
LAYOUT
=================================== */

.aipm-final-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 500px;

    gap: 80px;

    align-items: center;
}

/* ===================================
CONTENT
=================================== */

.aipm-final-content {

    max-width: 700px;
}

.aipm-final-tag {

    display: inline-flex;

    align-items: center;

    padding: 12px 20px;

    border-radius: 50px;

    background: rgba(255,122,0,.12);

    color: #ff7a00;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.aipm-final-content h2 {

    color: #07235b;

    font-size: 62px;

    line-height: 1.1;

    margin-bottom: 20px;

    font-weight: 700;
}

.aipm-final-content p {

    color: #64748b;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;

    max-width: 620px;
}

/* ===================================
SERVICE TAGS
=================================== */

.aipm-final-services {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 25px;
}

.aipm-final-services span {

    padding: 10px 16px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 50px;

    color: #07235b;

    font-size: 14px;

    font-weight: 500;
}

/* ===================================
TRUST POINTS
=================================== */

.aipm-final-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 40px;
}

.aipm-final-trust div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 50px;

    color: #07235b;

    font-size: 14px;

    font-weight: 500;
}

.aipm-final-trust i {

    color: #ff7a00;
}

/* ===================================
BUTTONS
=================================== */

.aipm-final-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}

/* Primary Button */

.aipm-final-call {

    height: 62px;

    padding: 0 32px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #ff7a00;

    color: #ffffff;

    text-decoration: none;

    border-radius: 14px;

    font-weight: 700;

    transition: .3s ease;

    box-shadow:
    0 15px 35px rgba(255,122,0,.25);
}

.aipm-final-call:hover {

    transform: translateY(-4px);

    box-shadow:
    0 20px 40px rgba(255,122,0,.35);
}

/* Secondary Button */

.aipm-final-quote {

    height: 62px;

    padding: 0 32px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 2px solid #07235b;

    color: #07235b;

    text-decoration: none;

    border-radius: 14px;

    font-weight: 600;

    transition: .3s ease;
}

.aipm-final-quote:hover {

    background: #07235b;

    color: #ffffff;
}

/* ===================================
IMAGE
=================================== */

.aipm-final-image {

    position: relative;
}

.aipm-final-image img {

    width: 100%;

    display: block;

    border-radius: 28px;

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);
}

.aipm-final-image::before {

    content: "";

    position: absolute;

    inset: -15px;

    border-radius: 35px;

    border: 2px solid rgba(255,122,0,.15);

    z-index: -1;
}

/* ===================================
FINAL CTA RESPONSIVE
=================================== */

@media (max-width: 991px){

    .aipm-final-grid{

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .aipm-final-content{

        text-align: center;

        max-width: 100%;
    }

    .aipm-final-services,
    .aipm-final-trust,
    .aipm-final-buttons{

        justify-content: center;
    }

    .aipm-final-image{

        max-width: 550px;

        margin: auto;
    }
}

@media (max-width: 768px){

    .aipm-final-cta{

        padding: 80px 0;
    }

    .aipm-final-content h2{

        font-size: 38px;
    }

    .aipm-final-content p{

        font-size: 15px;
    }

    .aipm-final-services{

        justify-content: center;
    }

    .aipm-final-trust{

        flex-direction: column;

        align-items: stretch;
    }

    .aipm-final-trust div{

        justify-content: center;
    }

    .aipm-final-buttons{

        flex-direction: column;
    }

    .aipm-final-call,
    .aipm-final-quote{

        width: 100%;
    }
}

@media (max-width: 480px){

    .aipm-final-content h2{

        font-size: 32px;
    }

    .aipm-final-tag{

        font-size: 12px;
    }

    .aipm-final-services span{

        width: 100%;

        text-align: center;
    }
}

/* ===================================
FOOTER
=================================== */

.aipm-footer {

    background: #07235B;

    padding: 50px 0 25px;
}

/* Top */

.aipm-footer-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand */

.aipm-footer-brand {

    max-width: 500px;
}

.aipm-footer-brand img {

    height: 65px;

    width: auto;

    margin-bottom: 18px;
}

.aipm-footer-brand p {

    color: rgba(255,255,255,.70);

    font-size: 15px;

    line-height: 1.8;
}

/* Links */

.aipm-footer-links {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;
}

.aipm-footer-links a {

    color: rgba(255,255,255,.80);

    text-decoration: none;

    font-size: 15px;

    transition: .3s ease;
}

.aipm-footer-links a:hover {

    color: #FF7A00;
}

/* Bottom */

.aipm-footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.aipm-footer-bottom p {

    color: rgba(255,255,255,.60);

    font-size: 14px;

    margin: 0;
}

.aipm-footer-bottom a {

    color: #FF7A00;

    text-decoration: none;

    font-weight: 600;
}

.aipm-footer-bottom a:hover {

    text-decoration: underline;
}

/* ===================================
FOOTER RESPONSIVE
=================================== */

@media (max-width: 768px){

    .aipm-footer {

        padding: 40px 0 20px;
    }

    .aipm-footer-top {

        flex-direction: column;

        align-items: flex-start;

        text-align: left;
    }

    .aipm-footer-links {

        flex-direction: column;

        gap: 15px;
    }

    .aipm-footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .aipm-footer-brand img {

        height: 55px;
    }

}

/* ===================================
LEGAL PAGES
=================================== */

.aipm-legal-page {

    padding: 100px 0;

    background: #f8fafc;
}

/* Header */

.aipm-legal-header {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 60px;
}

.aipm-legal-tag {

    display: inline-block;

    padding: 10px 18px;

    background: #fff4ea;

    color: #FF7A00;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.aipm-legal-header h1 {

    font-size: 54px;

    color: #07235B;

    margin-bottom: 20px;
}

.aipm-legal-header p {

    color: #64748B;

    line-height: 1.8;
}

/* Content Box */

.aipm-legal-content {

    max-width: 950px;

    margin: auto;

    background: #ffffff;

    padding: 50px;

    border-radius: 24px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.05);
}

/* Section */

.aipm-legal-block {

    margin-bottom: 35px;
}

.aipm-legal-block:last-child {

    margin-bottom: 0;
}

.aipm-legal-block h2 {

    color: #07235B;

    font-size: 24px;

    margin-bottom: 12px;
}

.aipm-legal-block p {

    color: #64748B;

    line-height: 1.9;

    font-size: 16px;
}


/* ===================================
CONTACT PAGE
=================================== */

.aipm-contact-page{

    padding:90px 0;

    background:
    linear-gradient(
        180deg,
        #F8FAFC,
        #FFFFFF
    );
}

/* ==========================
HEADER
========================== */

.aipm-contact-header{

    max-width:800px;

    margin:auto;

    text-align:center;

    margin-bottom:60px;
}

.aipm-contact-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#FFF4EA;

    color:#FF7A00;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;
}

.aipm-contact-header h1{

    font-size:64px;

    color:#07235B;

    line-height:1.1;

    margin-bottom:20px;
}

.aipm-contact-header p{

    color:#64748B;

    line-height:1.8;

    font-size:18px;
}

/* ==========================
CONTACT CARDS
========================== */

.aipm-contact-cards{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;

    margin-bottom:70px;
}

.aipm-contact-card{

    background:#fff;

    padding:35px 25px;

    border-radius:24px;

    text-align:center;

    border:1px solid #E5E7EB;

    transition:.3s;

    text-decoration:none;

    color:inherit;
}

.aipm-contact-card:hover{

    transform:translateY(-8px);

    border-color:#FF7A00;

    box-shadow:
    0 20px 40px rgba(0,0,0,.06);
}

.aipm-contact-icon{

    width:80px;
    height:80px;

    border-radius:20px;

    background:#FFF4EA;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;
}

.aipm-contact-icon i{

    color:#FF7A00;

    font-size:30px;
}

.aipm-contact-card h3{

    color:#07235B;

    font-size:24px;

    margin-bottom:8px;
}

.aipm-contact-card p{

    color:#64748B;

    line-height:1.6;
}

/* ==========================
FORM + MAP
========================== */

.aipm-contact-grid{

    display:grid;

    grid-template-columns:
    520px 1fr;

    gap:35px;

    margin-bottom:70px;
}

.aipm-contact-form-wrap,
.aipm-map-wrap{

    background:#fff;

    border-radius:24px;

    padding:40px;

    border:1px solid #E5E7EB;

    box-shadow:
    0 15px 35px rgba(0,0,0,.04);
}

.aipm-contact-form-wrap h2{

    color:#07235B;

    margin-bottom:12px;
}

.aipm-contact-form-wrap p{

    color:#64748B;

    margin-bottom:25px;
}

/* FORM */

.aipm-contact-form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.aipm-contact-form input,
.aipm-contact-form textarea{

    width:100%;

    border:1px solid #E2E8F0;

    border-radius:12px;

    padding:16px 18px;

    font-size:15px;

    transition:.3s;
}

.aipm-contact-form input:focus,
.aipm-contact-form textarea:focus{

    outline:none;

    border-color:#FF7A00;

    box-shadow:
    0 0 0 4px rgba(255,122,0,.08);
}

.aipm-contact-form button{

    height:60px;

    border:none;

    border-radius:12px;

    background:#FF7A00;

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.aipm-contact-form button:hover{

    transform:translateY(-2px);
}

/* MAP */

.aipm-map-wrap{

    padding:15px;
}

.aipm-map-wrap iframe{

    width:100%;

    height:100%;

    min-height:600px;

    border:none;

    border-radius:18px;
}

/* ==========================
BOTTOM INFO
========================== */

.aipm-business-info{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

.aipm-business-box{

    background:#07235B;

    border-radius:24px;

    padding:35px;

    text-align:center;
}

.aipm-business-box i{

    font-size:34px;

    color:#FF7A00;

    margin-bottom:18px;
}

.aipm-business-box h3{

    color:#fff;

    margin-bottom:10px;
}

.aipm-business-box p{

    color:rgba(255,255,255,.75);

    line-height:1.7;
}

@media(max-width:991px){

    .aipm-contact-cards{

        grid-template-columns:
        repeat(2,1fr);
    }

    .aipm-contact-grid{

        grid-template-columns:1fr;
    }

    .aipm-business-info{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .aipm-contact-page{

        padding:70px 0;
    }

    .aipm-contact-header h1{

        font-size:40px;
    }

    .aipm-contact-header p{

        font-size:15px;
    }

    .aipm-contact-cards{

        grid-template-columns:1fr;
    }

    .aipm-contact-form-wrap,
    .aipm-map-wrap{

        padding:25px;
    }

    .aipm-map-wrap iframe{

        min-height:400px;
    }
}