 :root {
     --gp-blue: #234E91;
     --gp-orange: #F97316;
     --gp-cyan: #0EA5E9;
     --bg-neutral: #F1F5F9;
     --text-main: #0F172A;
 }

 .gp-global-wrapper {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background-color: var(--bg-neutral);
     color: var(--text-main);
     overflow-x: hidden;
     margin: 0;
     padding: 0;
 }

 .gp-global-wrapper h1,
 .gp-global-wrapper h2,
 .gp-global-wrapper h3,
 .gp-global-wrapper h4,
 .gp-global-wrapper .nav-link {
     font-family: 'Outfit', sans-serif;
 }

 /* --- SMART PREMIUM NAVBAR --- */
 .gp-navbar-container {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1050;
     padding: 15px 0;
     /* Reduced initial padding */
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .gp-navbar-container.scrolled {
     padding: 0;
 }

 .gp-custom-nav {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(20px);
     border-radius: 100px;
     padding: 8px 20px;
     /* Reduced padding for mobile safety */
     box-shadow: 0 10px 30px rgba(35, 78, 145, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
     margin: 0 auto;
     max-width: 95%;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .gp-navbar-container.scrolled .gp-custom-nav {
     border-radius: 0;
     max-width: 100%;
     background: #ffffff;
     border-bottom: 3px solid var(--gp-blue);
     padding: 12px 5%;
 }

 .gp-brand {
     font-weight: 900;
     font-size: 1.3rem;
     color: var(--gp-blue) !important;
     text-decoration: none;
 }

 .gp-nav-item .nav-link {
     font-weight: 700;
     color: var(--gp-blue) !important;
     margin: 0 15px;
     font-size: 0.9rem;
 }

 .gp-btn-nav {
     background: var(--gp-blue);
     color: white !important;
     border-radius: 50px;
     padding: 8px 20px !important;
     font-weight: 800;
     border: none;
     display: inline-block;
     transition: 0.3s ease;
 }

 /* --- FAQ CARET FIX --- */
 .gp-acc-btn {
     font-weight: 700;
     color: var(--gp-blue) !important;
     padding: 20px;
     background: none !important;
     border: none;
     width: 100%;
     text-align: left;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 /* Custom Caret */
 .gp-acc-btn::after {
     content: '\F282';
     /* Bootstrap bi-chevron-down */
     font-family: 'bootstrap-icons';
     transition: transform 0.3s ease;
     font-size: 1rem;
     color: var(--gp-orange);
 }

 .gp-acc-btn:not(.collapsed)::after {
     transform: rotate(180deg);
 }

 /* --- HERO SECTION --- */
 .gp-hero-section {
     padding: 140px 0 80px;
     background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent), #ffffff;
     min-height: 100vh;
     display: flex;
     align-items: center;
 }

 .gp-hero-badge {
     display: inline-block;
     background: var(--gp-blue);
     color: white;
     padding: 8px 20px;
     font-weight: 800;
     font-size: 0.75rem;
     letter-spacing: 1px;
     margin-bottom: 25px;
     text-transform: uppercase;
     border-radius: 4px;
 }

 .gp-hero-title {
     font-size: clamp(2.2rem, 5vw, 4rem);
     font-weight: 900;
     line-height: 1.1;
     margin-bottom: 25px;
 }

 .gp-hero-title span {
     color: var(--gp-orange);
 }

 .gp-hero-desc {
     font-size: 1.1rem;
     color: #475569;
     max-width: 600px;
     margin-bottom: 40px;
 }

 /* --- SERVICES --- */
 .gp-service-wrap {
     padding: 20px 0;
     background: #ffffff;
     border-radius: 60px 60px 0 0;
 }

 .gp-service-card {
     background: var(--bg-neutral);
     border: 1px solid rgba(0, 0, 0, 0.03);
     padding: 40px 25px;
     border-radius: 30px;
     height: 100%;
     transition: all 0.4s ease;
     text-align: center;
 }

 .gp-service-icon {
     font-size: 3rem;
     color: var(--gp-blue);
     margin-bottom: 20px;
     display: block;
 }

 .gp-btn-get {
     background: var(--gp-orange);
     color: white;
     border: none;
     padding: 10px 30px;
     font-weight: 700;
     border-radius: 50px;
     font-size: 0.9rem;
     margin-top: 20px;
 }

 /* --- WHY CHOOSE US --- */
 .gp-why-section {
     padding: 80px 0;
     background: #ffffff;
 }

 .gp-why-box {
     border-left: 6px solid var(--gp-orange);
     background: var(--bg-neutral);
     padding: 30px;
     box-shadow: 8px 8px 0px var(--gp-blue);
     height: 100%;
 }

 /* --- FOOTER --- */
 .gp-footer {
     background: var(--gp-blue);
     color: white;
     padding: 80px 0 30px;
 }

 .gp-footer-logo {
     font-size: 2rem;
     font-weight: 900;
     margin-bottom: 20px;
 }

 .gp-contact-pill {
     background: rgba(255, 255, 255, 0.1);
     padding: 10px 20px;
     border-radius: 50px;
     display: inline-block;
     margin: 5px;
     font-size: 0.85rem;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* --- RESPONSIVE ADJUSTMENTS --- */
 @media (max-width: 991px) {
     .gp-brand {
         font-size: 1.1rem;
     }

     .gp-custom-nav {
         border-radius: 25px;
         max-width: 95%;
         padding: 10px 15px;
     }

     .navbar-collapse {
         background: #fff;
         padding: 20px;
         border-radius: 20px;
         margin-top: 15px;
         box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     }

     .gp-hero-section {
         padding-top: 40px;
         text-align: center;
     }

     .gp-hero-desc {
         margin: 0 auto 30px;
     }

     .gp-hero-visual {
         margin-top: 50px;
     }
 }

 /* About Page Specific Styles */
.gp-about-hero {
    padding: 120px 0 40px 0;
    background: linear-gradient(to bottom, #ffffff, var(--bg-neutral));
}

.gp-floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gp-blue);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
}

.gp-process-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 30px;
    border-bottom: 5px solid var(--gp-orange);
    transition: 0.3s;
    height: 100%;
}

.gp-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.gp-step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-neutral);
    color: var(--gp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.2rem;
}

.gp-vision-box {
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.05), transparent);
}

@media (max-width: 991px) {
    .gp-about-hero { padding: 150px 0 60px; }
    .gp-floating-stat { position: relative; right: 0; bottom: 0; margin-top: 20px; }
}

/* Service Page Specific Styles */
.gp-service-hero {
    padding: 120px 0 80px 0;
    background: radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.05), transparent);
}

.gp-service-detail-card {
    background: #e2e2e2;
    padding: 50px 35px;
    border-radius: 40px;
    border: 5px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gp-service-detail-card.active {
    border-color: var(--gp-blue);
    box-shadow: 0 20px 40px rgba(35, 78, 145, 0.08);
}

.gp-service-detail-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.gp-service-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--bg-neutral);
    color: var(--gp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 20px;
    margin-bottom: 30px;
}

.gp-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-service-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-service-list li i {
    color: var(--gp-orange);
    font-size: 1.1rem;
}

.gp-mini-stat {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .gp-service-hero { padding: 140px 0 60px; }
    .gp-service-detail-card { padding: 35px 25px; }
}

/* Contact Page Specific Styles */
.gp-contact-form-card {
    background: #fff;
    border-color: rgba(0,0,0,0.05) !important;
}

.gp-input {
    background-color: var(--bg-neutral) !important;
    border: 1px solid transparent !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-size: 0.95rem;
    transition: 0.3s;
}

.gp-input:focus {
    border-color: var(--gp-blue) !important;
    box-shadow: 0 0 0 4px rgba(35, 78, 145, 0.1) !important;
    background-color: #fff !important;
}

.gp-info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-neutral);
    color: var(--gp-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.gp-social-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-neutral);
    color: var(--gp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.gp-social-btn:hover {
    background: var(--gp-blue);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .gp-contact-hero { padding-top: 140px !important; }
    .gp-contact-form-card { padding: 30px 20px !important; }
}