/* ===================================================================
   PROJECT MADE EASY - Custom Stylesheet
   Primary: #101E33  |  Accent: #FFCE22
   Headings: 'Work Sans'  |  Body: 'Open Sans'
   =================================================================== */
   
   html, body {
  overflow-x: hidden;
}

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: #101E33;
    --primary-light: #1a2d4a;
    --primary-dark: #0a1322;
    --accent: #FFCE22;
    --accent-light: #ffe066;
    --accent-dark: #e6b800;
    --white: #ffffff;
    --off-white: #F8F9FC;
    --gray-50: #f0f2f5;
    --gray-100: #e2e6ec;
    --gray-200: #c5ccd6;
    --gray-300: #a8b3c1;
    --gray-400: #8b9aab;
    --gray-500: #6e8196;
    --gray-600: #556880;
    --gray-700: #3d4f6a;
    --gray-800: #253654;
    --text-primary: #101E33;
    --text-secondary: #556880;
    --text-light: #8b9aab;
    --text-on-dark: #c5ccd6;
    --text-on-dark-bright: #ffffff;
    --shadow-sm: 0 1px 3px rgba(16, 30, 51, 0.06), 0 1px 2px rgba(16, 30, 51, 0.04);
    --shadow-md: 0 4px 14px rgba(16, 30, 51, 0.08);
    --shadow-lg: 0 10px 30px rgba(16, 30, 51, 0.1);
    --shadow-xl: 0 20px 50px rgba(16, 30, 51, 0.14);
    --shadow-accent: 0 4px 20px rgba(255, 206, 34, 0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Work Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-dark);
}

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

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.preloader-inner .logo-text span {
    color: var(--accent);
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 206, 34, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Back to Top ---------- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

/* ---------- Navbar ---------- */
.navbar {
    padding: 14px 0;
    transition: all var(--transition-base);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(16, 30, 51, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(16, 30, 51, 0.2);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white) !important;
    letter-spacing: -0.3px;
}

.navbar-brand span {
    color: var(--accent);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    transition: color var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
    border-radius: 2px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-toggler {
    border: none;
    padding: 4px;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-full) !important;
    padding: 8px 22px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px !important;
    transition: all var(--transition-fast) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    color: var(--primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.925rem;
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
}

.btn-primary-custom:hover {
    background: var(--accent-light);
    color: var(--primary);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 6px;
}

.btn i {
    margin-right: 6px;
}

.btn-lg {
    padding: 14px 34px;
    font-size: 1rem;
}

/* ---------- Section Badge ---------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 206, 34, 0.1);
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 206, 34, 0.2);
    margin-bottom: 1rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-color: rgba(255, 206, 34, 0.2);
}

.section-badge i {
    font-size: 0.7rem;
}

/* ---------- Section Heading ---------- */
.section-heading {
    margin-bottom: 1rem;
}

.section-subheading {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
}

.text-center .section-subheading {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Section Spacing ---------- */
.section-padding {
    padding: 90px 0;
}

/* ---------- HERO SECTION ---------- */
#hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 206, 34, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 206, 34, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid-bg {
    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: 60px 60px;
    pointer-events: none;
}

.hero-content h1 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
    color: var(--accent);
    position: relative;
}

.hero-content .hero-subheading {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.hero-content .hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hero-trust-line i {
    color: #25D366;
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-image-wrapper .floating-card.card-1 {
    bottom: 20%;
    left: -30px;
    animation-delay: 0s;
}

.hero-image-wrapper .floating-card.card-2 {
    top: 15%;
    right: -20px;
    animation-delay: 2s;
}

.floating-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.floating-card .fc-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.floating-card .fc-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 400;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ---------- SERVICES SECTION ---------- */
#services {
    background: var(--off-white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card .service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-card .coming-soon-tag {
    display: inline-block;
    background: rgba(255, 206, 34, 0.15);
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-top: 10px;
}

.services-image-col img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ---------- TRUST SECTION ---------- */
#trust {
    background: var(--white);
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .stat-number span {
    color: var(--accent);
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-features {
    margin-top: 2.5rem;
}

.trust-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.trust-feature-item .tf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 206, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 0.9rem;
}

.trust-feature-item .tf-text h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.trust-feature-item .tf-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.trust-image-col img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ---------- HOW IT WORKS SECTION ---------- */
#how-it-works {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#how-it-works h2 {
    color: var(--white);
}

#how-it-works .section-subheading {
    color: var(--text-on-dark);
}

.step-card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    height: 100%;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 206, 34, 0.2);
}

.step-card .step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 206, 34, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.step-card h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-on-dark);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Step connector line */
.step-connector {
    display: none;
}

/* ---------- CTA FORM SECTION ---------- */
#cta-form {
    background: var(--off-white);
    position: relative;
}

.form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-wrapper .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-wrapper .form-control,
.form-wrapper .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.form-wrapper .form-control:focus,
.form-wrapper .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 206, 34, 0.15);
}

.form-wrapper .form-control::placeholder {
    color: var(--text-light);
}

.form-wrapper .form-check-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.form-info-panel {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info-panel h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.form-info-panel p {
    color: var(--text-on-dark);
    font-size: 0.95rem;
}

.form-info-panel .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-on-dark);
    font-size: 0.9rem;
}

.form-info-panel .info-item i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ---------- PUBLICATION SECTION ---------- */
#publication {
    background: var(--white);
    position: relative;
}

.publication-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.publication-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 206, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.publication-card h2 {
    color: var(--white);
}

.publication-card .section-subheading {
    color: var(--text-on-dark);
}

.publication-card .publication-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}

.publication-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ---------- SOCIAL PROOF / GALLERY SECTION ---------- */
#gallery {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 30, 51, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .gallery-caption {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-item.gi-large {
    grid-row: span 2;
}

.gallery-item.gi-large img {
    height: 100%;
    min-height: 540px;
}

/* ---------- FINAL CTA SECTION ---------- */
#final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 206, 34, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

#final-cta .section-subheading {
    color: var(--text-on-dark);
    margin: 0 auto 1.5rem auto;
}

#final-cta .cta-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-on-dark);
    padding: 60px 0 0;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand span {
    color: var(--accent);
}

.footer-about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    margin-top: 10px;
}

.footer-whatsapp-btn:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 206, 34, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .hero-grid-bg {
    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: 60px 60px;
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero h1 .highlight {
    color: var(--accent);
}

.page-hero .page-hero-sub {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.page-hero .page-hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page-hero-img img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb a:hover {
    color: var(--accent);
}

.page-breadcrumb span {
    color: var(--accent);
}

.page-breadcrumb .bc-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- CONTENT SECTIONS (Inner Pages) ---------- */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--off-white);
}

.content-section h2 {
    margin-bottom: 1rem;
}

.content-section .content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.content-section .content-text p {
    margin-bottom: 1.2rem;
}

/* Trust points list */
.trust-points-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.trust-points-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.trust-points-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent-dark);
    font-size: 0.85rem;
}

/* Service Group Card */
.service-group-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    height: 100%;
}

.service-group-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-group-card h3 {
    margin-bottom: 1rem;
}

.service-group-card .sg-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Pricing explainer */
.pricing-explainer {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-100);
    text-align: center;
}

.pricing-explainer h3 {
    margin-bottom: 0.75rem;
}

.pricing-explainer p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.pricing-explainer .pricing-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 206, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent-dark);
}

/* Testimonial card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card img {
    width: 100%;
    height: auto;
}

.testimonial-card .tc-body {
    padding: 20px;
}

.testimonial-card .tc-body p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Featured testimonial */
.testimonial-featured {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}

.testimonial-featured img {
    width: 100%;
    height: auto;
}

/* Contact details card */
.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.contact-detail-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.contact-detail-card .cd-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(255, 206, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
}

.contact-detail-card .cd-text h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-detail-card .cd-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Privacy note */
.privacy-note {
    background: rgba(255, 206, 34, 0.08);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.privacy-note i {
    color: var(--accent-dark);
    margin-right: 6px;
}

/* ---------- Animations (AOS alternative) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
    
    .btn-lg {
    padding: 10px 10px !important;
    font-size: 0.9rem !important;
}

i.bi.bi-star-fill {
    display: none;
}

a.btn.btn-primary-custom.me-2 {
    transform: translateY(-10px);
}

.navbar {
    background: rgba(16, 30, 51, 0.97) !important;
}
    
    .section-padding {
        padding: 60px 0;
    }

    #hero,
    .page-hero {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .page-hero .page-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-img {
        margin-top: 30px;
    }

    .page-breadcrumb {
        justify-content: center;
    }

    .content-section {
        padding: 60px 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust-line {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .hero-image-wrapper .floating-card.card-1 {
        left: 10px;
        bottom: 10%;
    }

    .hero-image-wrapper .floating-card.card-2 {
        right: 10px;
        top: 10%;
    }

    .form-wrapper {
        padding: 28px;
    }

    .form-info-panel {
        margin-top: 30px;
        padding: 30px;
    }

    .publication-card {
        padding: 30px;
    }

    .gallery-item.gi-large {
        grid-row: span 1;
    }

    .gallery-item.gi-large img {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 20px;
    }

    .publication-card {
        padding: 24px;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-float .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ---------- Form Modal ---------- */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.modal-header {
    background: var(--primary);
    border: none;
    padding: 20px 24px;
}

.modal-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px 24px;
}

.modal-footer {
    border-top: 1px solid var(--gray-100);
    padding: 16px 24px;
}

/* Counter animation */
.counting {
    display: inline-block;
}

/* Smooth scrollbar for gallery */
.gallery-grid::-webkit-scrollbar {
    height: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

/* ---------- REVIEW MASONRY GRID ---------- */
.review-masonry {
    columns: 3;
    column-gap: 20px;
}

.review-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.review-item::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    background: rgba(255, 206, 34, 0.95);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform var(--transition-base);
    z-index: 2;
    line-height: 48px;
    text-align: center;
}

.review-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.review-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 30, 51, 0.15);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
    pointer-events: none;
}

.review-item:hover::before {
    opacity: 1;
}

.review-item video,
.review-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.review-item video {
    min-height: 180px;
    max-height: 400px;
}

/* Review badge overlay */
.review-item .review-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(16, 30, 51, 0.8);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-item .review-badge i {
    color: var(--accent);
    font-size: 0.6rem;
}

/* ---------- REVIEW CAROUSEL (Auto-scroll) ---------- */
.review-carousel-wrap {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.review-carousel-wrap::before,
.review-carousel-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.review-carousel-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
}

.review-carousel-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
}

/* Dark bg variant */
.review-carousel-wrap.on-dark::before {
    background: linear-gradient(to right, var(--white), transparent);
}

.review-carousel-wrap.on-dark::after {
    background: linear-gradient(to left, var(--white), transparent);
}

.review-carousel-track {
    display: flex;
    gap: 20px;
    animation: reviewScroll 40s linear infinite;
    width: max-content;
}

.review-carousel-track:hover {
    animation-play-state: paused;
}

.review-carousel-item {
    flex: 0 0 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.review-carousel-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.review-carousel-item video,
.review-carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.review-carousel-item::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(255, 206, 34, 0.95);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform var(--transition-base);
    z-index: 2;
    line-height: 40px;
    text-align: center;
}

.review-carousel-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes reviewScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---------- REVIEW MODAL ---------- */
#reviewModal .modal-dialog {
    max-width: 480px;
}

#reviewModal .modal-content {
    background: var(--primary-dark);
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

#reviewModal .modal-header {
    background: transparent;
    border: none;
    padding: 12px 16px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

#reviewModal .modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
    background-color: rgba(16, 30, 51, 0.6);
    border-radius: 50%;
    padding: 8px;
}

#reviewModal .modal-header .btn-close:hover {
    opacity: 1;
}

#reviewModal .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

#reviewModal .modal-body video,
#reviewModal .modal-body img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

/* ---------- REVIEW MASONRY RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .review-masonry {
        columns: 2;
    }

    .review-carousel-item {
        flex: 0 0 180px;
    }

    .review-carousel-item video,
    .review-carousel-item img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .review-masonry {
        columns: 2;
        column-gap: 12px;
    }

    .review-item {
        margin-bottom: 12px;
    }

    .review-carousel-item {
        flex: 0 0 160px;
    }

    .review-carousel-item video,
    .review-carousel-item img {
        height: 220px;
    }

    #reviewModal .modal-dialog {
        max-width: 95%;
        margin: 10px auto;
    }
}

@media (max-width: 575.98px) {
    .review-masonry {
        columns: 2;
        column-gap: 10px;
    }

    .review-item {
        margin-bottom: 10px;
    }

    .review-item::after {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        line-height: 36px;
    }
}