/* Modern Reset & Utilities for this page */
:root {
    --page-primary: #0b2053;
    --page-accent: #4df41b;
    --page-text: #555555;
    --page-bg-light: #f8f9fc;
    --gradient-primary: linear-gradient(135deg, #0b2053 0%, #1a4b8c 100%);
    --gradient-accent: linear-gradient(135deg, #32cd32 0%, #4df41b 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Banner Section */
.premium-banner {
    position: relative;
    height: 65vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background-color: var(--page-primary);
}
.premium-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    animation: zoomInOut 20s infinite alternate;
}
.premium-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,32,83,0.6) 0%, rgba(11,32,83,0.9) 100%);
    z-index: 1;
}
.premium-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}
.premium-title {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--heading-font);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}
.premium-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.premium-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease-out;
}
.banner-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.banner-curve svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.banner-curve .shape-fill {
    fill: #ffffff;
}

/* Transform Section */
.transform-section {
    padding: 120px 0;
    background-color: #ffffff;
}
.transform-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.transform-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}
.transform-img-box:hover img {
    transform: scale(1.05);
}
.floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    font-weight: bold;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    text-align: center;
}
.floating-stat h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--heading-font);
    margin-bottom: 5px;
}
.floating-stat p {
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transform-content {
    padding-left: 50px;
}
.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(77, 244, 27, 0.1);
    color: var(--page-accent);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}
.transform-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--heading-font);
    color: var(--page-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}
.transform-desc {
    font-size: 1.1rem;
    color: var(--page-text);
    line-height: 1.8;
}

/* Services Grid (Bento/Card Style) */
.premium-services-section {
    padding: 120px 0;
    background: var(--page-bg-light);
    position: relative;
}
.services-heading-wrapper {
    text-align: center;
    margin-bottom: 70px;
}
.services-heading-wrapper h2 {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--heading-font);
    color: var(--page-primary);
    margin-bottom: 15px;
}
.services-heading-wrapper p {
    color: var(--page-text);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}
.premium-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.premium-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}
.premium-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11,32,83,0.15);
}
.premium-service-card:hover::after {
    opacity: 1;
}
.service-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(77, 244, 27, 0.1);
    color: var(--page-accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}
.premium-service-card:hover .service-icon-box {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    transform: scale(1.1);
}
.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--page-primary);
    margin-bottom: 15px;
    transition: var(--transition);
}
.premium-service-card:hover .service-card-title {
    color: #ffffff;
}
.service-card-desc {
    font-size: 1rem;
    color: var(--page-text);
    line-height: 1.7;
    transition: var(--transition);
    margin-bottom: 0;
}
.premium-service-card:hover .service-card-desc {
    color: rgba(255,255,255,0.85);
}

/* Redesigned Contact Section */
.premium-contact-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}
.premium-contact-card {
    background: #F4F9EB;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    padding: 60px;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.premium-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77,244,27,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 991px) {
    .premium-title { font-size: 3rem; }
    .transform-content { padding-left: 0; margin-top: 60px; }
    .transform-title { font-size: 2.4rem; }
    .floating-stat { right: 20px; bottom: -20px; }
    .premium-contact-card { padding: 40px 20px; }
}
@media (max-width: 767px) {
    .premium-banner { min-height: 400px; }
    .premium-title { font-size: 2.2rem; }
    .services-heading-wrapper h2 { font-size: 2.2rem; }
    .floating-stat { display: none; }
}
