@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #8e46f1;
    --primary-hover: #7932dc;
    --primary-light: #f0e6ff;
    --secondary: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-main: #f1efef;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.04), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-premium: 0 20px 25px -5px rgba(124, 58, 237, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    font-weight: 700;
}

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

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

/* Header & Navbar */
header {
    position: sticky;
    top: 0;
    background-color: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

.logo img {
    height: 140px;
    width: auto;
    display: block;
    margin: -40px 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 0 0 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated light blob backgrounds */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: #e0e7ff;
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    animation: float 6s ease-in-out infinite;
}

/* Floating element badges around Hero Rhino */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(142, 70, 241, 0.25);
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 0 15px rgba(142, 70, 241, 0.15);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.badge-icon {
    font-size: 20px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(142, 70, 241, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(142, 70, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.badge-desc {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* Positioning & Animations around Rhino */
.badge-1 {
    top: 5%;
    left: -30px;
    animation: float-slow 7s ease-in-out infinite;
}

.badge-2 {
    top: 25%;
    right: -35px;
    animation: float-fast 5.5s ease-in-out infinite;
}

.badge-3 {
    bottom: 22%;
    left: -25px;
    animation: float-med 6.5s ease-in-out infinite;
}

.badge-4 {
    bottom: 4%;
    right: -25px;
    animation: float-slow 8s ease-in-out infinite;
}

/* Floating keyframe variations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-med {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-fast {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Sections Common Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* Services Grids (Home & Page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: #3d3838;
    border: 1px solid #4a4444;
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.service-card .service-icon {
    background-color: #4a4444;
    color: #ffffff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(124, 58, 237, 0.2);
}

.service-card:hover::before {
    background-color: var(--primary);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card-desc {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 24px;
}

.service-card-link {
    font-weight: 600;
    color: #ffffff;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.service-card-link:hover {
    opacity: 1;
    color: #ffffff;
}

.service-card-link svg {
    transition: var(--transition);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Split layout block */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-text {
    padding-right: 20px;
}

.split-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.split-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.split-image .stats-grid {
    width: 100%;
}

/* Core Values cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.value-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-desc {
    font-size: 15px;
    color: var(--text-muted);
}

/* Mission & Vision Callout styling */
.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.callout-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.callout-tag {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.callout-title {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.callout-desc {
    color: var(--text-muted);
    font-size: 16px;
}

.callout-highlight {
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    font-size: 16px;
    margin-top: 24px;
    color: var(--secondary);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    justify-content: center;
}

.team-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px auto;
    background-color: var(--primary-light);
    border: 4px solid var(--bg-light);
}

.team-name {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.team-exp {
    color: var(--text-muted);
    font-size: 14px;
}

/* ── Service Showcase Grid (services.php) ─────────────────── */
.svc-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.svc-showcase-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.svc-showcase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #c084fc);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.svc-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(142, 70, 241, 0.08);
    border-color: rgba(142, 70, 241, 0.25);
}

.svc-showcase-card:hover::before { opacity: 1; }

.svc-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.svc-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.svc-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.6;
}

.svc-card-bullets {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.svc-card-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-dark);
    font-weight: 500;
}

.svc-bullet-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #c084fc);
    flex-shrink: 0;
}

.svc-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.svc-plans-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--primary-light);
    color: var(--primary);
    letter-spacing: 0.3px;
}

.svc-addon-badge {
    background: #f0fdf4;
    color: #10b981;
}

.svc-card-link {
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.svc-card-link:hover { gap: 9px; }

/* Pricing Layout on Services Page */
.service-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}


.service-section:last-child {
    border-bottom: none;
}

.service-meta {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.service-meta-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--secondary);
}

.service-meta-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 520px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-bottom: 0;
    align-items: stretch;
}

/* ── Pricing Card ─────────────────────────────────────── */
.price-card {
    background: linear-gradient(145deg, #2e2a2a 0%, #3d3838 60%, #312d2d 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #ffffff;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #c084fc);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.22), 0 0 0 1px rgba(142,70,241,0.18);
}

.price-card:hover::before {
    opacity: 1;
}

/* Featured / Best Seller Card Styling */
.price-card.popular {
    border: 2px solid #8e46f1;
    background: linear-gradient(145deg, #352c3c 0%, #43334d 60%, #37293e 100%);
    box-shadow: 0 16px 40px rgba(142, 70, 241, 0.3), 0 0 0 1px rgba(142, 70, 241, 0.4);
    transform: scale(1.02);
    z-index: 2;
}

.price-card.popular::before {
    opacity: 1;
    height: 4px;
    background: linear-gradient(90deg, #8e46f1, #e879f9, #8e46f1);
}

.price-card.popular .price-btn {
    background: linear-gradient(135deg, #8e46f1 0%, #c084fc 100%) !important;
    box-shadow: 0 6px 20px rgba(142, 70, 241, 0.5) !important;
}

.price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #8e46f1, #d946ef);
    color: #ffffff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 14px rgba(142, 70, 241, 0.45);
}

/* ── Price Header ─────────────────────────────────────── */
.price-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #f1f5f9;
    letter-spacing: -0.2px;
}

.price-sub {
    color: rgba(255,255,255,0.42);
    font-size: 12px;
    margin-bottom: 18px;
    font-weight: 500;
}

.price-value-container {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    align-self: flex-start;
    margin-top: 6px;
}

.price-value {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
}

.price-period {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-left: 4px;
    align-self: flex-end;
    margin-bottom: 4px;
}

/* ── Feature List ─────────────────────────────────────── */
.price-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
}

.price-features li:last-child { border-bottom: none; }

.feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.feature-icon.yes {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.feature-icon.no {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.price-features li.excluded {
    color: rgba(255,255,255,0.2);
    opacity: 0.7;
}

/* ── CTA Button ───────────────────────────────────────── */
.price-btn {
    width: 100%;
    margin-top: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 13px 20px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(142, 70, 241, 0.30) !important;
    transition: all 0.2s ease !important;
}

.price-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(142, 70, 241, 0.45) !important;
}

.addons-box {
    background-color: #3d3838;
    border: 1px solid #4a4444;
    border-radius: var(--radius-md);
    padding: 24px 30px;
    color: #ffffff;
}

.addons-title {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Inline Card Add-ons ─────────────────────────────── */
.card-addons {
    border-top: 1px solid rgba(255,255,255,0.09);
    margin-top: auto;
    padding-top: 18px;
}

.card-addons-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.addon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.addon-row:last-of-type { border-bottom: none; }

.addon-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.addon-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.30);
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    line-height: 1;
}

.addon-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(142,70,241,0.1);
}

.addon-toggle.addon-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.addon-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.addon-name {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.addon-unit-price {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* Qty controls */
.addon-qty-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 3px 8px;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    line-height: 1;
    padding: 0;
}

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

.qty-val {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    min-width: 18px;
    text-align: center;
}

.addon-line-price {
    font-size: 13px;
    font-weight: 700;
    color: #a78bfa;
    flex-shrink: 0;
    display: none;
}

/* Addon subtotal bar */
.addon-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(142,70,241,0.15);
    border: 1px solid rgba(142,70,241,0.25);
    font-size: 13px;
    font-weight: 600;
    color: #c4b5fd;
}

/* Price flash animation */
@keyframes priceFlash {
    0%   { color: #a78bfa; transform: scale(1.06); }
    100% { color: inherit; transform: scale(1); }
}

.price-flash {
    animation: priceFlash 0.4s ease-out forwards;
}

/* ── Plan Summary Banner (contact.php prefill) ───────────── */
.plan-summary-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ede9fe 100%);
    border: 1px solid rgba(142, 70, 241, 0.2);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.psb-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.psb-body {
    flex: 1;
    min-width: 0;
}

.psb-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 3px;
}

.psb-plan {
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.psb-service {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.psb-change {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 14px;
    border: 1.5px solid var(--primary);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.psb-change:hover {
    background: var(--primary);
    color: #fff;
}

/* Interactive Calculator Styles */
.calculator-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.calc-section-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.calc-group {
    margin-bottom: 32px;
}

.calc-group:last-child {
    margin-bottom: 0;
}

.calc-service-select {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.calc-service-select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.calc-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.calc-plan-option {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.calc-plan-option:hover {
    border-color: var(--primary);
    background-color: var(--bg-white);
}

.calc-plan-option.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

.calc-plan-name {
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.calc-plan-val {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.calc-plan-option.selected .calc-plan-val {
    color: var(--primary);
}

.calc-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.calc-addon-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    cursor: pointer;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.calc-addon-option:hover {
    border-color: var(--primary);
}

.calc-addon-option.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.calc-addon-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.calc-addon-option.selected .calc-addon-checkbox {
    background-color: var(--primary);
    border-color: var(--primary);
}

.calc-addon-checkbox::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translate(1px, -1px);
    opacity: 0;
}

.calc-addon-option.selected .calc-addon-checkbox::after {
    opacity: 1;
}

.calc-addon-text {
    font-size: 13px;
    font-weight: 600;
}

.calc-addon-price {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

/* Calculator Summary Box */
.calc-summary {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-summary-title {
    font-size: 20px;
    margin-bottom: 24px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.calc-row.total {
    border-top: 1px dashed var(--border-color);
    padding-top: 24px;
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--secondary);
}

.calc-row.total .calc-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

/* Contact Layout styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.contact-info-val {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 4px;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

/* Alert Notification classes */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer layout */
footer {
    background-color: #0b0f19;
    border-top: 1px solid #1e293b;
    padding: 80px 0 40px 0;
    color: #94a3b8;
}

footer .logo img {
    filter: brightness(0) invert(1) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-desc {
    color: #64748b;
    margin-top: 16px;
    font-size: 14px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #94a3b8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #a78bfa;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Admin Dashboard layout styles */
.admin-body {
    background-color: #f1f5f9;
}

.admin-header {
    background-color: var(--secondary);
    color: var(--bg-white);
    border-bottom: none;
}

.admin-header .admin-logo img {
    filter: brightness(0) invert(1) !important;
}

.admin-header .admin-logo span {
    color: #ffffff !important;
    opacity: 0.8 !important;
}

.admin-navbar {
    min-height: 70px;
    padding: 8px 0;
}

.admin-logo {
    color: var(--bg-white);
}

.admin-nav-links .nav-link {
    color: #94a3b8;
}

.admin-nav-links .nav-link:hover, .admin-nav-links .nav-link.active {
    color: var(--bg-white);
}

.admin-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
}

.admin-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
}

/* Admin Sidebar navigation */
.admin-sidebar {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.admin-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.admin-sidebar-item a:hover {
    background-color: var(--bg-light);
    color: var(--secondary);
}

.admin-sidebar-item.active a {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.admin-sidebar-item a svg {
    width: 18px;
    height: 18px;
}

/* Admin Content Cards & Tables */
.admin-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.admin-card:last-child {
    margin-bottom: 0;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.admin-card-title {
    font-size: 20px;
}

.admin-card-actions {
    display: flex;
    gap: 12px;
}

/* Admin Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-stat-icon.primary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.admin-stat-icon.success {
    background-color: #d1fae5;
    color: var(--success);
}

.admin-stat-icon.warning {
    background-color: #fef3c7;
    color: var(--warning);
}

.admin-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.admin-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Table styles */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.table th {
    padding: 16px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--secondary);
    background-color: var(--bg-light);
}

.table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-unread {
    background-color: #fee2e2;
    color: var(--danger);
}

.badge-read {
    background-color: #d1fae5;
    color: var(--success);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
}

.btn-danger {
    background-color: var(--danger);
    color: var(--bg-white);
}

.btn-danger:hover {
    background-color: #dc2626;
}

/* Login screen wrapper */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    padding: 24px;
}

.login-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 800;
}

/* Cards are styled dark globally using #3d3838 background */

/* Responsive grid changes */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image {
        margin-top: 40px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
    .floating-badge {
        display: none;
    }
    .hero-title {
        font-size: 46px;
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split-text {
        padding-right: 0;
    }
    .vision-mission-cards {
        grid-template-columns: 1fr;
    }
    .admin-wrapper {
        grid-template-columns: 1fr;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none; /* In js we will toggle active class */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 30px 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        gap: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .hero-title {
        font-size: 36px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .calc-plans-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-tag {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Password input styling with eye toggle */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-wrapper .form-control {
    padding-right: 48px;
}

.password-toggle-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: var(--primary);
}

.password-toggle-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Grid & Map Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.map-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.map-direct-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

/* About Page Enhanced Components */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #a855f7);
    opacity: 0;
    transition: var(--transition);
}

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

.stat-card:hover::before {
    opacity: 1;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Growth Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.pillar-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(142, 70, 241, 0.3);
}

.pillar-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.pillar-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.pillar-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* About CTA Banner */
.about-cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e1b4b 100%);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.about-cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(142, 70, 241, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta-title {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.about-cta-desc {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 32px auto;
    line-height: 1.7;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Additional Responsive Tweaks */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .floating-badge {
        transform: scale(0.85);
    }
    .badge-1 { left: -10px; top: 0; }
    .badge-2 { right: -10px; top: 15%; }
    .badge-3 { left: -10px; bottom: 15%; }
    .badge-4 { right: -10px; bottom: 0; }
}

@media (max-width: 600px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .floating-badge {
        display: none;
    }
    .map-container iframe {
        height: 320px;
    }
    .map-card {
        padding: 20px;
    }
    .about-cta-banner {
        padding: 40px 20px;
    }
    .about-cta-title {
        font-size: 26px;
    }
}

/* ==========================================================================
   Hero Section Background Images & Styling System (All Pages)
   ========================================================================== */

/* Base Hero Layering */
.hero,
#aboutWhoWeAre,
#servicesHero,
#pricingHero,
#contactSection,
#blogHero,
#postHero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Dots Grid Pattern Overlay on Heros */
#aboutWhoWeAre::before,
#servicesHero::before,
#pricingHero::before,
#contactSection::before,
#blogHero::before,
#postHero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

#aboutWhoWeAre .container,
#servicesHero .container,
#pricingHero .container,
#contactSection .container,
#blogHero .container,
#postHero .container {
    position: relative;
    z-index: 2;
}

/* 1. Home Page Hero Background */
#homeHero.hero {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(142, 70, 241, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        linear-gradient(135deg, rgba(248, 250, 252, 0.94) 0%, rgba(241, 239, 239, 0.96) 100%),
        url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80');
}

/* 2. About Us Hero Background */
#aboutWhoWeAre {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(142, 70, 241, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.94) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    color: #ffffff;
}
#aboutWhoWeAre .hero-title, 
#aboutWhoWeAre h1,
#aboutWhoWeAre h2 { color: #ffffff !important; }
#aboutWhoWeAre p,
#aboutWhoWeAre #whoWeAreDesc { color: #cbd5e1 !important; }

/* 3. Services Hero Background */
#servicesHero {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(142, 70, 241, 0.35) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.93) 100%),
        url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1920&q=80');
    color: #ffffff;
}
#servicesHero .hero-title,
#servicesHero h1 { color: #ffffff !important; }
#servicesHero .hero-subtitle,
#servicesHero p { color: #cbd5e1 !important; }

/* 4. Pricing Hero Background */
#pricingHero {
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(142, 70, 241, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.95) 100%),
        url('https://images.unsplash.com/photo-1634017839464-5c339ebe3cb4?auto=format&fit=crop&w=1920&q=80');
    color: #ffffff;
}
#pricingHero .hero-title,
#pricingHero h1 { color: #ffffff !important; }
#pricingHero .hero-subtitle,
#pricingHero p { color: #cbd5e1 !important; }

/* 5. Contact Hero Background */
#contactSection {
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(142, 70, 241, 0.3) 0%, transparent 45%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.95) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
}
#contactSection #contactHeading,
#contactSection h1 { color: #ffffff !important; }
#contactSection #contactDesc { color: #cbd5e1 !important; }
#contactSection .contact-info-label { color: #94a3b8 !important; }
#contactSection .contact-info-val { color: #ffffff !important; }

/* 6. Blog Hero Background */
#blogHero {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(142, 70, 241, 0.32) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.87) 0%, rgba(30, 41, 59, 0.94) 100%),
        url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?auto=format&fit=crop&w=1920&q=80');
    color: #ffffff;
}
#blogHero .hero-title,
#blogHero h1 { color: #ffffff !important; }
#blogHero .hero-subtitle,
#blogHero p { color: #cbd5e1 !important; }

/* 7. Blog Post Detail Hero Background */
#postHero {
    background-image: 
        radial-gradient(circle at 15% 80%, rgba(142, 70, 241, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.95) 100%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80');
    color: #ffffff;
}
#postHero .hero-title,
#postHero h1,
#postHero #postHeading { color: #ffffff !important; }

/* Clean Text Section & Hero Tags (No Background Box) */
.section-tag,
.hero-tag,
#aboutWhoWeAre .section-tag,
#servicesHero .section-tag,
#pricingHero .section-tag,
#contactSection .section-tag,
#blogHero .section-tag,
#postHero .section-tag {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    color: #c084fc !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 14px;
}


