/* ==========================================
   ALANKRAT CONSULTANCY SERVICES LLP - PREMIUM LIGHT THEME
   ========================================== */

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

:root {
    /* Color Tokens based on Official Logo - Modern Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f6f8fc;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-hover: rgba(255, 255, 255, 0.98);
    
    /* Primary brand colors from the Logo */
    --color-primary: #a81a28;        /* Logo gothic crimson red */
    --color-primary-rgb: 168, 26, 40;
    --color-secondary: #0090c6;      /* Logo subtext sky blue */
    --color-secondary-rgb: 0, 144, 198;
    
    /* Flower Petals Accent colors */
    --color-petal-pink: #e1a5b8;
    --color-petal-yellow: #f8b813;
    --color-petal-green: #7bc043;
    --color-petal-magenta: #d01c6f;
    
    --text-primary: #0f172a;         /* High-contrast deep slate black */
    --text-secondary: #475569;       /* Professional body slate grey */
    --text-muted: #64748b;           /* Muted grey */
    
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-hover: rgba(0, 144, 198, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-gothic: 'Cinzel', serif;
    
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.09);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Typography & General Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gothic-text {
    font-family: var(--font-gothic);
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

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

ul {
    list-style: none;
}

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

/* Grid layout helper */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section layouts */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    background: rgba(0, 144, 198, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 144, 198, 0.15);
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* Decorative background shapes for light mode */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
    filter: blur(80px);
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    top: 5%;
    left: -5%;
}

.bg-shape-2 {
    width: 350px;
    height: 350px;
    background: var(--color-primary);
    bottom: 10%;
    right: -5%;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00709b 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 144, 198, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 144, 198, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, var(--color-secondary) 100%);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

.btn-outline-crm {
    background: rgba(123, 192, 67, 0.05);
    color: var(--color-petal-green);
    border-color: rgba(123, 192, 67, 0.3);
    box-shadow: 0 4px 12px rgba(123, 192, 67, 0.05);
}

.btn-outline-crm:hover {
    background: var(--color-petal-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 192, 67, 0.3);
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.crm-mobile-only {
    display: none !important;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
}

/* ==========================================
   HERO BANNER
   ========================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(0, 144, 198, 0.05), transparent 45%),
                radial-gradient(circle at bottom left, rgba(168, 26, 40, 0.03), transparent 45%);
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-tag i {
    color: var(--color-petal-green);
}

.hero-headline {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-headline span {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Elegant Light Theme Dashboard Mockup */
.hero-visual {
    position: relative;
}

.hero-dashboard-preview {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
    transition: var(--transition-smooth);
}

.hero-dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.dots-wrapper {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: var(--color-primary); }
.dot-yellow { background: var(--color-petal-yellow); }
.dot-green { background: var(--color-petal-green); }

.dashboard-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mock-progress {
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.mock-progress-bar {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-petal-green));
}

/* ==========================================
   ABOUT US
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    max-width: 650px;
}

.about-highlight {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-desc {
    margin-bottom: 30px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-check-item i {
    color: var(--color-petal-green);
    margin-top: 4px;
}

/* Stats counter card */
.about-stats-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-stats-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 144, 198, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-box {
    margin-bottom: 30px;
}

.stat-box:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

/* ==========================================
   SERVICES GRID (7 Core offerings in Light Glass)
   ========================================== */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#serviceCard7 {
    grid-column: span 3;
    text-align: center;
    align-items: center;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(0, 144, 198, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 144, 198, 0.15);
    color: var(--color-secondary);
    font-size: 22px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 144, 198, 0.3);
}

/* Service Card Themes matching your beautiful logo */
.service-card.blue .service-icon-wrapper {
    color: var(--color-secondary);
    background: rgba(0, 144, 198, 0.05);
    border-color: rgba(0, 144, 198, 0.12);
}
.service-card.blue:hover .service-icon-wrapper {
    background: var(--color-secondary);
    color: #fff;
}

.service-card.green .service-icon-wrapper {
    color: var(--color-petal-green);
    background: rgba(123, 192, 67, 0.05);
    border-color: rgba(123, 192, 67, 0.12);
}
.service-card.green:hover .service-icon-wrapper {
    background: var(--color-petal-green);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(123, 192, 67, 0.3);
}

.service-card.crimson .service-icon-wrapper {
    color: var(--color-primary);
    background: rgba(168, 26, 40, 0.05);
    border-color: rgba(168, 26, 40, 0.12);
}
.service-card.crimson:hover .service-icon-wrapper {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 15px rgba(168, 26, 40, 0.3);
}

.service-card.yellow .service-icon-wrapper {
    color: var(--color-petal-yellow);
    background: rgba(248, 184, 19, 0.05);
    border-color: rgba(248, 184, 19, 0.12);
}
.service-card.yellow:hover .service-icon-wrapper {
    background: var(--color-petal-yellow);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(248, 184, 19, 0.3);
}

.service-card.magenta .service-icon-wrapper {
    color: var(--color-petal-magenta);
    background: rgba(208, 28, 111, 0.05);
    border-color: rgba(208, 28, 111, 0.12);
}
.service-card.magenta:hover .service-icon-wrapper {
    background: var(--color-petal-magenta);
    color: #fff;
    box-shadow: 0 6px 15px rgba(208, 28, 111, 0.3);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-top: auto;
}

.service-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-bullet-item i {
    font-size: 10px;
    color: var(--color-secondary);
}

/* ==========================================
   VISUAL INFOGRAPHICS SECTION (NEW REDESIGNED)
   ========================================== */
.infographic-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.infographic-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lifecycle-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

/* Direct connecting line down the steps */
.lifecycle-track::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--color-primary) 0%, 
        var(--color-petal-yellow) 33%, 
        var(--color-secondary) 66%, 
        var(--color-petal-green) 100%);
    z-index: 1;
}

.lifecycle-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.lifecycle-step:hover {
    transform: translateX(10px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

.step-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.lifecycle-step:nth-child(1) .step-node { background: var(--color-primary); }
.lifecycle-step:nth-child(2) .step-node { background: var(--color-petal-yellow); color:#0f172a; }
.lifecycle-step:nth-child(3) .step-node { background: var(--color-secondary); }
.lifecycle-step:nth-child(4) .step-node { background: var(--color-petal-green); color:#0f172a; }

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Beautiful visual graph charts representing company infographics */
.infographic-visual-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.infographic-visual-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.infographic-visual-card p {
    font-size: 13px;
    margin-bottom: 24px;
}

/* Dynamic HTML/CSS bar infographic chart */
.infographic-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-bar-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-bar-track {
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.chart-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease-out;
}

.fill-red { background: linear-gradient(90deg, var(--color-primary), var(--color-petal-yellow)); width: 94%; }
.fill-blue { background: linear-gradient(90deg, var(--color-secondary), var(--color-petal-green)); width: 88%; }
.fill-yellow { background: linear-gradient(90deg, var(--color-petal-yellow), var(--color-petal-pink)); width: 96%; }
.fill-green { background: linear-gradient(90deg, var(--color-petal-green), var(--color-petal-magenta)); width: 85%; }

/* ==========================================
   WHY CHOOSE ALANKRAT
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.why-number {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.04);
    margin-bottom: 8px;
    line-height: 1;
}

.why-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-text {
    font-size: 14px;
}

/* Industries tag grid */
.industries-wrapper {
    margin-top: 80px;
    text-align: center;
}

.industries-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.industries-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-tag {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.industry-tag:hover {
    background: rgba(0, 144, 198, 0.05);
    border-color: var(--color-secondary);
    transform: scale(1.05);
    color: var(--text-primary);
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-card.popular {
    border-color: var(--color-secondary);
    background: radial-gradient(circle at top right, rgba(0, 144, 198, 0.05), transparent), #ffffff;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
}

.pricing-name {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.pricing-price span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-feature-item i {
    color: var(--color-petal-green);
}

/* ==========================================
   CONTACT US
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.contact-detail-box {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 144, 198, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 18px;
}

.contact-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-primary);
    font-size: 15px;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.social-circle:hover {
    transform: translateY(-2px);
}

/* Brand colors for social media circles */
.social-circle.social-facebook {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.2);
    background: rgba(24, 119, 242, 0.05);
}
.social-circle.social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-circle.social-linkedin {
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.2);
    background: rgba(0, 119, 181, 0.05);
}
.social-circle.social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-circle.social-instagram {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.2);
    background: rgba(225, 48, 108, 0.05);
}
.social-circle.social-instagram:hover {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(238, 42, 123, 0.3);
}

.social-circle.social-whatsapp {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(37, 211, 102, 0.05);
}
.social-circle.social-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-circle.social-youtube {
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.2);
    background: rgba(255, 0, 0, 0.05);
}
.social-circle.social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.social-circle.social-twitter {
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.2);
    background: rgba(29, 161, 242, 0.05);
}
.social-circle.social-twitter:hover {
    background: #0f1419;
    border-color: #0f1419;
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 20, 25, 0.3);
}

.social-circle.social-crm {
    color: var(--color-secondary);
    border-color: rgba(0, 144, 198, 0.2);
    background: rgba(0, 144, 198, 0.05);
}
.social-circle.social-crm:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 144, 198, 0.3);
}

/* Floating label form styling */
.contact-form-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-secondary);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 144, 198, 0.08);
}

textarea.form-control {
    resize: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
    font-size: 14px;
}

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

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-about-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter p {
    margin-bottom: 16px;
}

.newsletter-box {
    display: flex;
    gap: 8px;
}

.newsletter-box input {
    flex-grow: 1;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-copyright {
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    font-size: 13px;
}

/* ==========================================
   RESPONSIVENESS BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .services-container { grid-template-columns: repeat(2, 1fr); }
    #serviceCard7 { grid-column: span 2; }
    .hero-wrapper { grid-template-columns: 1fr; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-dashboard-preview { transform: none; max-width: 600px; margin: 40px auto 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
    .pricing-card.popular { transform: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .infographic-grid-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-title { font-size: 30px; }
    .nav-menu-list { display: none; } /* Will toggle in mobile */
    .nav-menu-list.open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-glass-hover);
        backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
        gap: 16px;
        z-index: 1000;
    }
    .nav-menu-list.open .nav-link {
        color: var(--text-primary);
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
        display: block;
    }
    .nav-menu-list.open .nav-link::after {
        display: none;
    }
    .crm-mobile-only {
        display: block !important;
    }
    .crm-mobile-only .nav-link {
        color: var(--color-primary) !important;
        font-weight: 700;
    }
    .nav-actions .btn-outline-crm {
        display: none;
    }
    .mobile-toggle { display: block; }
    .hero-headline { font-size: 40px; }
    .hero-subline { font-size: 16px; }
    .about-features { grid-template-columns: 1fr; }
    .form-group-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .services-container { grid-template-columns: 1fr; }
    #serviceCard7 { grid-column: span 1; }
    .why-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .lifecycle-track { flex-direction: column; align-items: stretch; }
}

/* ==========================================
   SOFTWARE DEVELOPMENT SERVICES SECTION
   ========================================== */
.software-section {
    position: relative;
    overflow: hidden;
}

.software-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: -30px auto 50px auto;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.software-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

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

.software-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00709b 100%);
    box-shadow: 0 4px 12px rgba(0, 144, 198, 0.2);
}

.software-card:nth-child(even) .software-icon-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #80101b 100%);
    box-shadow: 0 4px 12px rgba(168, 26, 40, 0.2);
}

.software-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.software-card-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.software-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.software-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-secondary);
    font-weight: 500;
}

.software-bullet i {
    font-size: 12px;
    color: var(--color-petal-green);
}

/* Industries Sub-Grid */
.software-industries-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-sm);
}

.sub-section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.industries-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.industry-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.industry-item i {
    color: var(--color-secondary);
    font-size: 16px;
}

/* Why Choose Us Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.benefit-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    border-color: var(--color-petal-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 24px;
    color: var(--color-petal-green);
    margin-bottom: 12px;
}

.benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Let's Build CTA Panel */
.software-cta-panel {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.software-cta-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.software-cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.software-cta-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

.software-cta-btn {
    background: #ffffff;
    color: var(--color-primary);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.software-cta-btn:hover {
    background: var(--bg-secondary);
    color: var(--color-secondary);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .software-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-sub-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .software-grid { grid-template-columns: 1fr; }
    .industries-sub-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .software-cta-title { font-size: 26px; }
}

@media (max-width: 480px) {
    .header-nav .container {
        padding: 0 16px;
    }
    .logo-container {
        gap: 8px;
    }
    .logo-img {
        height: 40px !important;
    }
    #logo-svg-fallback svg {
        width: 32px !important;
        height: 30px !important;
    }
    #logo-svg-fallback .logo-text h2 {
        font-size: 16px !important;
    }
    #logo-svg-fallback .logo-text span {
        font-size: 8px !important;
        padding: 1px 4px !important;
    }
}

