/* ===================================
   N-Tech Group - Minimal Stylesheet
   =================================== */

:root {
    /* N-Tech Group Color Palette - Extracted from Logo */
    --primary-color: #FF6B35;
    --primary-dark: #E55100;
    --primary-light: #FFF3E0;
    --secondary-color: #1976D2;
    --secondary-dark: #1565C0;
    --secondary-light: #E3F2FD;
    --accent-gold: #FFA726;
    --accent-green: #2a9d8f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f0f0;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    --gradient-secondary: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    --gradient-brand: linear-gradient(135deg, #FF6B35 0%, #1976D2 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-normal: 0.3s ease;
    
    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(229, 81, 0, 0.3);
}

.nav-link.active::before {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   HERO SECTION
   =================================== */


/* ===================================
   Modern Hero Section
   =================================== */

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.85) 50%, rgba(15, 20, 25, 0.85) 100%),
                url('images/banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-modern-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-modern-background .bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-modern-background .bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

.hero-modern-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-modern-content {
    color: var(--white);
}

.hero-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-modern-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.25);
}

.hero-modern-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-modern-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-modern-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-modern-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.hero-modern-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.visual-card:hover::before {
    transform: scaleX(1);
}

.visual-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.section-subtitle i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-alt {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===================================
   SERVICES SECTION (SWIPER)
   =================================== */

.loan-slider-wrapper {
    position: relative;
    overflow: visible;
}

.loanSwiper {
    width: 100%;
    padding: 0 2rem 5rem !important;
}

.loanSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 1rem;
}

/* Loan Card Styles */
.loan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Loan Card Image */
.loan-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.loan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.loan-card:hover .loan-card-image img {
    transform: scale(1.1);
}

/* Loan Card Content */
.loan-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.loan-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.loan-card-desc {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.loan-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.loan-card-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.loan-card-features li i {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.loan-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.loan-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.loan-card-btn:hover::before {
    width: 400px;
    height: 400px;
}

.loan-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.loan-card-btn i {
    transition: transform 0.3s ease;
}

.loan-card-btn:hover i {
    transform: translateX(5px);
}

/* Swiper Navigation & Pagination */
.loanSwiper .swiper-button-next,
.loanSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.loanSwiper .swiper-button-next::after,
.loanSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 900;
}

.loanSwiper .swiper-button-next:hover,
.loanSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.loanSwiper .swiper-button-next:hover::after,
.loanSwiper .swiper-button-prev:hover::after {
    color: var(--white);
}

/* Swiper Pagination */
.loanSwiper .swiper-pagination {
    bottom: 0 !important;
}

.loanSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-gray);
    opacity: 1;
    transition: all 0.3s ease;
}

.loanSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* ===================================
   SOFTWARE SOLUTIONS SECTION
   =================================== */

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.software-grid .loan-card {
    max-width: 100%;
}

/* ===================================
   ABOUT US SECTION
   =================================== */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    overflow: visible;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-header {
    position: relative;
}

.about-header .section-subtitle {
    margin-bottom: 1rem;
}

.about-header .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-header .section-description {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.contact-info a {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-info a:hover {
    color: var(--primary-dark);
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.about-image-wrapper {
    position: relative;
    width: 90%;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(25, 118, 210, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: visible;
    margin-top: 3rem;
    padding: 4rem 0;
}

.testimonialsSwiper {
    width: 100%;
    padding: 0 4rem 5rem !important;
    overflow: visible;
}

.testimonialsSwiper .swiper-slide {
    width: 380px;
    height: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonialsSwiper .swiper-slide-active {
    z-index: 10;
}

.testimonialsSwiper .swiper-slide-shadow-left,
.testimonialsSwiper .swiper-slide-shadow-right,
.testimonialsSwiper .swiper-slide-shadow-top,
.testimonialsSwiper .swiper-slide-shadow-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.testimonialsSwiper .swiper-slide-active .testimonial-card::before {
    transform: scaleX(1);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonialsSwiper .swiper-slide-active .testimonial-card::after {
    opacity: 1;
}

.testimonialsSwiper .swiper-slide-active .testimonial-card {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.testimonialsSwiper .swiper-slide-active .testimonial-avatar {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 167, 38, 0.3));
}

.testimonial-content {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    position: relative;
    z-index: 2;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.testimonial-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-service i {
    font-size: 0.9rem;
}

/* Swiper Navigation for Testimonials - Fixed Position */
.testimonials-nav-next,
.testimonials-nav-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-gold);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 20;
    cursor: pointer;
}

.testimonials-nav-prev {
    left: 0;
}

.testimonials-nav-next {
    right: 0;
}

.testimonials-nav-next::after,
.testimonials-nav-prev::after {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 900;
}

.testimonials-nav-next:hover,
.testimonials-nav-prev:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-nav-next:hover::after,
.testimonials-nav-prev:hover::after {
    color: var(--white);
}


/* ===================================
   BENEFITS / WHY CHOOSE US SECTION
   =================================== */

.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefits-content {
    color: var(--white);
}

.benefits-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefits-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

.benefit-item span {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.6;
}

.benefits-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.benefits-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    position: relative;
    z-index: 3;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.6),
        0 0 80px rgba(25, 118, 210, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    animation: pulseShield 3s ease-in-out infinite;
}

.shield-icon i {
    font-size: 5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulseShield {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(255, 107, 53, 0.6),
            0 0 80px rgba(25, 118, 210, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 60px rgba(255, 107, 53, 0.8),
            0 0 120px rgba(25, 118, 210, 0.6),
            inset 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.network-dots {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(25, 118, 210, 0.8);
    animation: pulseDot 2s ease-in-out infinite;
}

.dot-1 { top: 10%; left: 15%; animation-delay: 0s; }
.dot-2 { top: 20%; right: 20%; animation-delay: 0.3s; }
.dot-3 { top: 50%; left: 10%; animation-delay: 0.6s; }
.dot-4 { top: 60%; right: 15%; animation-delay: 0.9s; }
.dot-5 { bottom: 20%; left: 20%; animation-delay: 1.2s; }
.dot-6 { bottom: 15%; right: 25%; animation-delay: 1.5s; }
.dot-7 { top: 35%; left: 30%; animation-delay: 1.8s; }
.dot-8 { bottom: 35%; right: 30%; animation-delay: 2.1s; }

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(25, 118, 210, 0.8);
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 25px rgba(25, 118, 210, 1);
    }
}

.network-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
}

.network-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 3px rgba(25, 118, 210, 0.5));
}

.network-svg line {
    animation: drawLine 3s ease-in-out infinite;
}

@keyframes drawLine {
    0%, 100% {
        stroke-opacity: 0.4;
    }
    50% {
        stroke-opacity: 0.8;
    }
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section-standalone {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    overflow: hidden;
}

.stats-section-standalone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.stats-animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.stats-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
}

.stats-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.stats-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.stats-section-standalone .container {
    position: relative;
    z-index: 1;
}

.stats-section-standalone .section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.stats-section-standalone .section-subtitle i {
    color: var(--accent-gold);
}

.section-title-white {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.5);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.stat-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(25, 118, 210, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
}

.stat-card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.4);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-card-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

.stat-card:hover .stat-card-icon::after {
    opacity: 0.5;
    transform: scale(1.2);
}

.stat-card-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-card-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.stat-card-content {
    position: relative;
}

.stat-card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

.stat-card-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-left: 0.25rem;
}

.stat-card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===================================
   CTA SECTION (NEED HELP)
   =================================== */

.need-help-section {
    padding: 4rem 0;
    position: relative;
    z-index: 5;
    background: var(--off-white);
}

.need-help-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.need-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), 
                radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.need-help-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.need-help-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.need-help-card .help-options {
    position: relative;
    z-index: 1;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.help-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.help-option:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.help-option:hover::before {
    left: 100%;
}

.help-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.help-option-call .help-option-icon {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.help-option-whatsapp .help-option-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.help-option:hover .help-option-icon {
    transform: scale(1.1) rotate(10deg);
}

.help-option-call:hover .help-option-icon {
    background: var(--primary-color);
    color: var(--white);
}

.help-option-whatsapp:hover .help-option-icon {
    background: #25D366;
    color: var(--white);
}

.help-option-content {
    flex: 1;
    min-width: 0;
}

.help-option-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.help-option-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.help-option-number {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.help-option-whatsapp .help-option-number {
    color: #25D366;
}

.help-option-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.help-option:hover .help-option-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 5rem 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(255, 107, 53, 0.08);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.5;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1rem;
}

.faq-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
    padding-top: 1rem;
}

/* ===================================
   PAGE HERO SECTION
   =================================== */

.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.85) 50%, rgba(15, 20, 25, 0.85) 100%),
                url('images/banner1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-hero .hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.page-hero .hero-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.page-hero .hero-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.page-hero .hero-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link:hover {
    color: var(--white);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.breadcrumb-current {
    color: var(--accent-gold);
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-wrapper {
    margin-top: 3rem;
}

/* Contact Info Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card p a.address-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.contact-info-card p a.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

.form-group.error .error-message {
    display: block;
}

.error-message:empty {
    display: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Actions */
.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    gap: 1rem;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
    border: none;
}

.map-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary {
    background: var(--gradient-primary);
}

/* ===================================
   FOOTER
   =================================== */

.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), 
                radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    margin: 50px 0 30px 0;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--accent-gold);
}

.footer-credits .made-by {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-credits .made-by a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits .made-by a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.singhal-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.singhal-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.singhal-whatsapp-float i {
    color: #FFF;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* ===================================
   ABOUT US PAGE - WHO WE ARE SECTION
   =================================== */

.who-we-are-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.who-we-are-modern .container {
    position: relative;
    z-index: 1;
}

.who-we-are-modern-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.who-we-are-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-we-are-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 500px;
}

.who-we-are-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.who-we-are-image-wrapper:hover::before {
    opacity: 1;
}

.who-we-are-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}

.who-we-are-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.who-we-are-image-wrapper:hover .who-we-are-image {
    transform: scale(1.05);
}

.who-we-are-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.who-we-are-image-wrapper:hover .who-we-are-image-overlay {
    opacity: 1;
}

.who-we-are-text-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    position: relative;
    padding-left: 2rem;
}

.text-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-block .lead-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
    margin: 0;
}

.who-we-are-features-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.feature-card-modern {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.1;
}

.feature-card-modern:hover .feature-icon-bg {
    transform: rotate(45deg) scale(1.1);
    opacity: 0.15;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-wrapper i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.feature-content-modern {
    position: relative;
    z-index: 1;
}

.feature-content-modern h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-content-modern p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   OUR OBJECTIVES SECTION
   =================================== */

.objectives-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.objectives-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Section: Objectives, Vision, Mission */
.objectives-left {
    display: flex;
    flex-direction: column;
}

.objectives-section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.objectives-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.objectives-subtitle i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.objectives-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin: 0 0 1rem 0;
    text-align: left;
}

.objectives-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.objective-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.objective-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin: 0;
}

.vision-mission-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.vm-item {
    padding: 1.5rem 0;
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.vm-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin: 0;
}

/* Right Section: Key Functions */
.objectives-right {
    position: relative;
}

.key-functions-box {
    background: var(--gradient-secondary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(25, 118, 210, 0.3);
    position: sticky;
    top: 100px;
}

.key-functions-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.key-functions-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
}

.key-functions-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

.key-functions-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.key-function-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.key-function-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.kf-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.kf-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* ===================================
   OUR APPROACH / HOW WE WORK
   =================================== */

.approach-section {
    position: relative;
    background-image: url('images/banner1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.80) 50%, rgba(15, 20, 25, 0.85) 100%),
                radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(25, 118, 210, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.approach-section .container {
    position: relative;
    z-index: 1;
}

.approach-section .section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.approach-section .section-subtitle i {
    color: var(--white);
}

.approach-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.approach-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.approach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.approach-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.approach-icon i {
    font-size: 2rem;
    color: var(--white);
}

.approach-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.approach-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   SERVICES PAGE - SERVICE DETAIL SECTIONS
   =================================== */

.service-detail-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.service-detail-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-detail-alt {
    background: var(--white);
}

/* Centered Header Section */
.service-detail-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
}

.service-detail-header .service-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 107, 53, 0.1);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: 'Poppins', sans-serif;
}

.service-detail-header .service-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.service-detail-header .service-detail-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.service-detail-header .service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.service-detail-header .service-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
}

.service-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.service-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}

.service-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.service-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.service-image-badge i {
    font-size: 1rem;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-benefits h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-uses h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.use-tag {
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.use-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

.service-cta-btn:hover::before {
    left: 100%;
}

.service-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.service-cta-btn:hover i {
    transform: translateX(5px);
}

.spec-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.spec-content {
    text-align: left;
    flex: 1;
}

.spec-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 0.25rem 0;
    text-align: left;
}

.spec-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    text-align: left;
}

/* ===================================
   CORE VALUES SECTION
   =================================== */

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.core-value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
}

.core-value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.core-value-card:hover::after {
    opacity: 0.05;
}

.core-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.cv-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.core-value-card:hover .cv-icon-circle {
    background: var(--gradient-primary);
    transform: rotateY(360deg);
}

.cv-icon-circle i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.core-value-card:hover .cv-icon-circle i {
    color: var(--white);
}

.core-value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin: 0 0 1rem 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.core-value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and Below (1024px) */
@media (max-width: 1024px) {
    /* Hero Modern Section */
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-modern-description {
        max-width: 100%;
    }
    
    .hero-modern-actions {
        justify-content: center;
    }
    
    .visual-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Services Section */
    .loanSwiper {
        padding: 0 1.5rem 4rem !important;
    }
    
    .loan-card {
        max-width: 400px;
    }
    
    .loan-card-image {
        height: 220px;
    }
    
    /* Software Grid */
    .software-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .loan-card-content {
        padding: 2rem;
    }
    
    .loan-card-content h3 {
        font-size: 1.6rem;
    }
    
    /* About Section */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-main-image {
        min-height: 450px;
    }
    
    /* Testimonials Section */
    .testimonialsSwiper {
        padding: 0 3rem 4rem !important;
    }
    
    .testimonialsSwiper .swiper-slide {
        width: 350px;
    }
    
    .testimonials-nav-next,
    .testimonials-nav-prev {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-nav-prev {
        left: 5px;
    }
    
    .testimonials-nav-next {
        right: 5px;
    }
    
    /* Benefits Section */
    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-visual {
        min-height: 400px;
        order: 2;
    }
    
    .benefits-content {
        order: 1;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shield-icon {
        width: 150px;
        height: 150px;
    }
    
    .shield-icon i {
        font-size: 4rem;
    }
    
    /* Stats Section */
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* CTA Section */
    .need-help-card {
        padding: 2.5rem 2rem;
    }
    
    .need-help-title {
        font-size: 1.75rem;
    }
    
    .help-options {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .help-option {
        padding: 1.25rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 180px 0 100px;
        min-height: 400px;
    }
    
    /* Contact Info Grid */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Footer */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Us Page - Who We Are */
    .who-we-are-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .who-we-are-image-wrapper {
        order: 1;
    }
    
    .who-we-are-text-modern {
        order: 2;
    }
    
    .who-we-are-features-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Objectives Section */
    .objectives-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .objectives-left {
        order: 1;
    }
    
    .objectives-right {
        order: 2;
    }
    
    .objectives-section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .objectives-title {
        text-align: center;
    }
    
    .key-functions-box {
        position: relative;
        top: 0;
    }
    
    /* Approach Grid */
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Core Values */
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 4rem 0;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-reverse {
        direction: ltr;
    }
    
    .service-detail-header {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .service-detail-header .service-number {
        font-size: 6rem;
        top: -1.5rem;
    }
    
    .service-detail-header .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-image-container img {
        height: 400px;
    }
    
    .service-detail-header .service-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile and Below (768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 82px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
    }
    
    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .menu-toggle.active span {
        background: var(--white);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Modern Section */
    .hero-modern {
        min-height: auto;
        padding: 140px 0 60px;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .hero-modern-visual {
        grid-template-columns: 1fr;
    }
    
    /* Services Section */
    .loan-slider-wrapper {
        margin-top: 2rem;
    }
    
    /* Software Grid */
    .software-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .loanSwiper {
        padding: 0 0 6rem !important;
    }
    
    .loan-card {
        max-width: 100%;
    }
    
    .loan-card-image {
        height: 200px;
    }
    
    .loan-card-content {
        padding: 1.5rem;
    }
    
    .loan-card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .loan-card-desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .loan-card-features {
        margin-bottom: 1.5rem;
    }
    
    .loan-card-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .loan-card-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Move navigation buttons below cards on mobile */
    .loanSwiper .swiper-button-next,
    .loanSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: 10px;
        margin-top: 0;
    }
    
    .loanSwiper .swiper-button-prev {
        left: 50%;
        transform: translateX(-65px);
    }
    
    .loanSwiper .swiper-button-next {
        right: 50%;
        transform: translateX(65px);
    }
    
    .loanSwiper .swiper-button-prev:hover {
        transform: translateX(-65px);
    }
    
    .loanSwiper .swiper-button-next:hover {
        transform: translateX(65px);
    }
    
    .loanSwiper .swiper-button-next::after,
    .loanSwiper .swiper-button-prev::after {
        font-size: 1.1rem;
    }
    
    /* Hide pagination on mobile */
    .loanSwiper .swiper-pagination {
        display: none !important;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Stats Section */
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 2.5rem 2rem;
    }
    
    .stat-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-card-icon i {
        font-size: 2rem;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
    
    .stats-shape {
        display: none;
    }
    
    /* Benefits Section */
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-wrapper {
        gap: 2.5rem;
    }
    
    .benefits-list {
        gap: 1.25rem;
    }
    
    .benefit-item {
        gap: 0.75rem;
    }
    
    .benefit-item i {
        font-size: 1.2rem;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .benefits-visual {
        min-height: 350px;
    }
    
    .shield-icon {
        width: 120px;
        height: 120px;
    }
    
    .shield-icon i {
        font-size: 3rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Testimonials Section */
    .testimonialsSwiper {
        padding: 0 0 6rem !important;
    }
    
    .testimonialsSwiper .swiper-slide {
        width: 320px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-slider-wrapper {
        padding: 2rem 0;
        overflow: visible;
    }
    
    .testimonialsSwiper {
        padding: 0 1rem 80px !important;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Move navigation buttons to bottom center on mobile */
    .testimonials-nav-next,
    .testimonials-nav-prev {
        width: 45px;
        height: 45px;
        top: auto;
        bottom: -10px;
        margin-top: 0;
        transform: translateY(0);
    }
    
    .testimonials-nav-prev {
        left: calc(50% - 60px);
        right: auto;
    }
    
    .testimonials-nav-next {
        right: calc(50% - 60px);
        left: auto;
    }
    
    .testimonials-nav-prev:hover {
        transform: translateY(0) scale(1.1);
    }
    
    .testimonials-nav-next:hover {
        transform: translateY(0) scale(1.1);
    }
    
    .testimonials-nav-next::after,
    .testimonials-nav-prev::after {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    /* CTA Section */
    .need-help-section {
        padding: 3rem 0;
    }
    
    .need-help-card {
        padding: 2rem 1.5rem;
    }
    
    .need-help-title {
        font-size: 1.5rem;
    }
    
    .need-help-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .help-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .help-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .help-option-arrow {
        display: none;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.75rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding-top: 0.75rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 160px 0 80px;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Contact Info Grid */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
    }
    
    /* About Us Page - Who We Are */
    .who-we-are-modern-content {
        gap: 3rem;
    }
    
    .who-we-are-wrapper {
        gap: 2.5rem;
    }
    
    .who-we-are-image-wrapper {
        min-height: 400px;
    }
    
    .who-we-are-text-modern {
        gap: 1.5rem;
    }
    
    .who-we-are-features-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .text-block {
        padding-left: 1.5rem;
    }
    
    .text-block::before {
        width: 3px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .feature-content-modern h4 {
        font-size: 1.2rem;
    }
    
    /* Objectives Section */
    .objectives-section {
        padding: 4rem 0;
    }
    
    .objectives-wrapper {
        gap: 2.5rem;
    }
    
    .objectives-section-header {
        text-align: center;
    }
    
    .objectives-title {
        text-align: center;
    }
    
    .key-functions-box {
        padding: 2.5rem 2rem;
    }
    
    .key-functions-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .key-functions-title {
        font-size: 1.75rem;
    }
    
    /* Approach Grid */
    .approach-grid {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .approach-card {
        padding: 1.75rem 1.5rem;
    }
    
    .approach-icon {
        width: 70px;
        height: 70px;
    }
    
    .approach-icon i {
        font-size: 1.75rem;
    }
    
    .approach-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .approach-title {
        font-size: 1.3rem;
    }
    
    .approach-description {
        font-size: 1rem;
    }
    
    /* Core Values */
    .core-values-grid {
        gap: 1.5rem;
    }
    
    .core-value-card {
        padding: 2rem 1.5rem;
    }
    
    .cv-icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .cv-icon-circle i {
        font-size: 2rem;
    }
    
    .core-value-card h3 {
        font-size: 1.35rem;
    }
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 3rem 0;
    }
    
    .service-detail-header {
        margin-bottom: 2.5rem;
    }
    
    .service-detail-header .service-number {
        font-size: 5rem;
        top: -1rem;
    }
    
    .service-detail-header .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-header .service-detail-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-header .service-detail-description {
        font-size: 1rem;
    }
    
    .service-image-container img {
        height: 350px;
    }
    
    .service-image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .spec-item {
        padding: 1.2rem;
    }
    
    .service-detail-header .service-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-benefits h3,
    .service-uses h3 {
        font-size: 1.5rem;
    }
    
    .service-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    /* Services Section */
    .loan-card-image {
        height: 180px;
    }
    
    .loan-card-content {
        padding: 1.25rem;
    }
    
    .loan-card-content h3 {
        font-size: 1.3rem;
    }
    
    .loan-card-desc {
        font-size: 0.9rem;
    }
    
    .loan-card-features li {
        font-size: 0.85rem;
    }
    
    .loan-card-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-main-image {
        min-height: 400px;
    }
}
