/* ============================================
   SANAD K HUB — Marketing Agency Website
   Premium Dark Red & White Theme
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Palette — Dark Red */
    --primary: #8B1A1A;
    --primary-dark: #6B0F0F;
    --primary-deeper: #4A0808;
    --primary-light: #A52A2A;
    --primary-glow: rgba(139, 26, 26, 0.3);
    --primary-subtle: rgba(139, 26, 26, 0.08);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F3F0;
    --medium-gray: #E8E4E0;
    --text-gray: #6B6B6B;
    --text-dark: #2D2D2D;
    --text-heading: #1A1A1A;

    /* Accents */
    --accent-gold: #C9A84C;
    --accent-warm: #D4A574;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 30px rgba(139, 26, 26, 0.25);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-arabic: 'Noto Kufi Arabic', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

/* ===== RTL / ARABIC LANGUAGE SUPPORT ===== */
html[lang="ar"] {
    font-family: var(--font-arabic);
}

html[lang="ar"] body {
    font-family: var(--font-arabic);
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6 {
    font-family: var(--font-arabic);
}

html[lang="ar"] .nav-link,
html[lang="ar"] .btn,
html[lang="ar"] .section-tag,
html[lang="ar"] button {
    font-family: var(--font-arabic);
}

html[lang="ar"] .hero-title {
    letter-spacing: 0;
}

html[lang="ar"] .section-tag {
    letter-spacing: 1px;
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    z-index: 1001;
    margin-inline-start: 12px;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.lang-toggle i {
    font-size: 0.9rem;
    color: var(--accent-gold);
    transition: var(--transition-base);
}

.lang-toggle:hover i {
    transform: rotate(20deg);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Highlight text */
.highlight {
    color: var(--primary);
}

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

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--white);
    border-radius: var(--radius-full);
    animation: preloaderSpin 1s linear infinite;
}

.preloader-logo {
    position: absolute;
    width: 40px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-dark);
    padding: 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--primary-deeper);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 85px;
    width: auto;
    transition: var(--transition-smooth);
    filter: brightness(1.1);
}

.navbar.scrolled .logo-img {
    height: 60px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-base);
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-base);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    margin-inline-start: 4px;
}

.nav-dropdown:hover .dropdown-toggle::before {
    border-top-color: var(--white);
    transform: rotateZ(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--primary-dark);
    border: 1px solid rgba(139, 26, 26, 0.3);
    border-radius: var(--radius-md);
    min-width: 200px;
    list-style: none;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding-inline-start: 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    overflow: hidden;
    padding: 120px 24px 200px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.06;
    background: var(--white);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: shapeFloat 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 60%;
    animation: shapeFloat 12s ease-in-out infinite 2s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: var(--accent-gold);
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    min-height: 1.3em;
}

.typed-text {
    color: var(--accent-gold);
    display: inline;
}

.cursor {
    color: var(--accent-gold);
    animation: cursorBlink 0.7s infinite;
    font-weight: 300;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

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

.btn-primary i {
    transition: var(--transition-base);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-full:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 26, 26, 0.35);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.scroll-arrow i {
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding: 6px 20px;
    background: var(--primary-subtle);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SERVICES HUB (Landing Page) ===== */
.services-hub-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.hub-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    height: 100%;
}

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

.hub-card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.hub-icon-individual {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.hub-icon-marketing {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.hub-icon-tech {
    background: linear-gradient(135deg, #0D0D12, var(--primary-dark));
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--accent-gold);
}

.hub-card:hover .hub-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.hub-card h3 {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 14px;
    color: var(--text-heading);
    transition: var(--transition-base);
}

.hub-card:hover h3 {
    color: var(--primary);
}

.hub-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
}

.hub-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: var(--transition-base);
}

.hub-card:hover .hub-card-link {
    gap: 12px;
}

.hub-card-link i {
    transition: var(--transition-base);
}

.services-hub-cta {
    text-align: center;
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    position: relative;
    padding: 140px 24px 80px;
    background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero-dark {
    background: linear-gradient(160deg, #0D0D12 0%, var(--primary-deeper) 60%, var(--primary-dark) 100%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-breadcrumb {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition-base);
}

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

.page-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

.page-breadcrumb-current {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .btn {
    margin-top: 8px;
}

.page-hero + section {
    padding-top: 70px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.about-feature:hover {
    background: var(--primary-subtle);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-heading);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.about-card i {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.about-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-card-1 {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.about-card-1 h4 { color: var(--white); }

.about-card-2 {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--medium-gray);
}

.about-card-2 i {
    color: var(--primary);
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card-1:hover {
    box-shadow: 0 15px 45px rgba(139, 26, 26, 0.35);
}

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

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-subtle);
}

.deco-circle-1 {
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    animation: decoSpin 20s linear infinite;
}

.deco-circle-2 {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 40px;
    border-style: dashed;
    animation: decoSpin 15s linear infinite reverse;
}

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

.deco-dots {
    position: absolute;
    top: 100px;
    right: -10px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--primary-subtle) 2px, transparent 2px);
    background-size: 12px 12px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

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

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

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

.service-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-icon-bg {
    position: absolute;
    inset: -4px;
    background: var(--primary-subtle);
    border-radius: var(--radius-md);
    transform: rotate(6deg);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.05);
}

.service-card:hover .service-icon-bg {
    transform: rotate(-3deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

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

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.service-link i {
    transition: var(--transition-base);
    font-size: 0.8rem;
}

.service-link:hover {
    gap: 12px;
}

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

/* ===== TECH SOLUTIONS SECTION ===== */
.tech-section {
    padding: 120px 0;
    background: #0D0D12;
    position: relative;
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 26, 26, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 26, 26, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.tech-glow {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(120px);
    opacity: 0.4;
}

.tech-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 26, 26, 0.5), transparent);
    top: -150px;
    left: -150px;
    animation: techGlowFloat 10s ease-in-out infinite;
}

.tech-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.3), transparent);
    bottom: -100px;
    right: -100px;
    animation: techGlowFloat 12s ease-in-out infinite reverse;
}

@keyframes techGlowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

/* Section variants for dark bg */
.section-tag-light {
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-gold);
}

.tech-title {
    color: var(--white);
}

.highlight-tech {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.3)) drop-shadow(0 0 8px rgba(255, 165, 0, 0.2));
    animation: techGlow 3s ease-in-out infinite;
}

@keyframes techGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.3)) drop-shadow(0 0 8px rgba(255, 165, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 15px rgba(255, 165, 0, 0.4));
    }
}

.highlight-gold {
    color: var(--accent-gold);
}

.section-line-gold {
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
}

.tech-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

/* ===== ORBIT VISUAL ===== */
.tech-orbit-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.tech-orbit {
    position: relative;
    width: 280px;
    height: 280px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.orbit-center-inner {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 40px rgba(139, 26, 26, 0.5);
    position: relative;
    z-index: 2;
}

.orbit-center-inner i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.orbit-center-inner span {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

.orbit-pulse {
    position: absolute;
    inset: -10px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(139, 26, 26, 0.3);
    animation: orbitPulseAnim 2s ease-out infinite;
}

@keyframes orbitPulseAnim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.orbit-ring-1 {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    animation: orbitSpin 15s linear infinite;
}

.orbit-ring-2 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
    border-style: dashed;
    animation: orbitSpin 25s linear infinite reverse;
}

.orbit-ring-3 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    animation: orbitSpin 35s linear infinite;
}

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

.orbit-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.orbit-dot-1 {
    top: 0;
    left: 50%;
    margin-left: -20px;
    animation: dotFloat 3s ease-in-out infinite;
}

.orbit-dot-2 {
    top: 50%;
    right: 0;
    margin-top: -20px;
    animation: dotFloat 3s ease-in-out infinite 0.75s;
}

.orbit-dot-3 {
    bottom: 0;
    left: 50%;
    margin-left: -20px;
    animation: dotFloat 3s ease-in-out infinite 1.5s;
}

.orbit-dot-4 {
    top: 50%;
    left: 0;
    margin-top: -20px;
    animation: dotFloat 3s ease-in-out infinite 2.25s;
}

@keyframes dotFloat {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(201, 168, 76, 0); }
    50% { transform: scale(1.15); box-shadow: 0 0 20px rgba(201, 168, 76, 0.3); }
}

/* ===== TECH CARDS ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.tech-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tech-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.2), rgba(201, 168, 76, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: var(--radius-lg);
}

.tech-card:hover .tech-card-glow {
    opacity: 1;
}

.tech-card-content {
    position: relative;
    z-index: 1;
    padding: 34px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    height: 100%;
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-card-content {
    border-color: rgba(139, 26, 26, 0.4);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-6px);
}

.tech-icon-box {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.tech-icon-ring {
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 26, 26, 0.3);
    transition: var(--transition-smooth);
    transform: rotate(4deg);
}

.tech-card:hover .tech-icon-box {
    background: linear-gradient(135deg, var(--accent-gold), #D4A574);
    transform: rotate(-6deg) scale(1.1);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.tech-card:hover .tech-icon-ring {
    border-color: rgba(201, 168, 76, 0.4);
    transform: rotate(-2deg) scale(1.15);
}

.tech-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: var(--transition-base);
}

.tech-card:hover h3 {
    color: var(--accent-gold);
}

.tech-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    padding: 5px 14px;
    background: rgba(139, 26, 26, 0.15);
    border: 1px solid rgba(139, 26, 26, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition-base);
}

.tech-card:hover .tech-tags span {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--accent-gold);
}

/* Wide card (Mobile Apps) */
.tech-card-wide {
    grid-column: 1 / -1;
}

.tech-card-wide .tech-card-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 24px;
    align-items: center;
}

.tech-card-wide .tech-icon-box {
    grid-row: 1 / 3;
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.tech-card-wide h3 {
    margin-bottom: 4px;
}

.tech-card-wide p {
    margin-bottom: 0;
    grid-column: 2;
}

.tech-card-wide .tech-tags {
    grid-row: 1 / 3;
    grid-column: 3;
    flex-direction: column;
    align-items: flex-end;
}

/* ===== TECH CTA ===== */
.tech-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    gap: 30px;
}

.tech-cta h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.tech-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #D4A574);
    color: var(--primary-deeper);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
    white-space: nowrap;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-gold i {
    transition: var(--transition-base);
}

.btn-gold:hover i {
    transform: translateX(4px);
}

/* ===== PORTFOLIO / WHY US SECTION ===== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.portfolio-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.portfolio-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-subtle);
    line-height: 1;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-number {
    color: var(--primary-glow);
}

.portfolio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.portfolio-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.portfolio-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

/* Counters Bar */
.counters-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.counters-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0 auto 14px;
}

.counter-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.counter-number::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--accent-gold);
}

.counter-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    color: var(--primary-subtle);
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-size: 1.05rem;
    color: var(--text-heading);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 3px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--medium-gray);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
    max-width: 500px;
    margin: 0 auto;
}

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

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    background: var(--primary-subtle);
    transform: translateX(6px);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-heading);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--radius-xl);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

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

/* ===== BUSINESS, MARKETING, TRAINING, PLACEMENT & SUPPORT SECTIONS ===== */
.business-section,
.marketing-section,
.training-section,
.placement-section,
.support-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.business-section {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.03) 0%, rgba(201, 168, 76, 0.02) 100%);
}

.marketing-section {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.03) 0%, rgba(139, 26, 26, 0.02) 100%);
}

.training-section {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.03) 0%, rgba(212, 165, 116, 0.02) 100%);
}

.placement-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(139, 26, 26, 0.02) 100%);
}

.support-section {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.03) 0%, rgba(201, 168, 76, 0.02) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-heading);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-placeholder {
    min-height: 300px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed var(--medium-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    text-align: center;
    padding: 40px;
    transition: var(--transition-smooth);
}

.content-placeholder:hover {
    border-color: var(--primary);
    background: rgba(139, 26, 26, 0.02);
}

/* ===== BUSINESS MANAGEMENT STYLES ===== */
.bm-intro {
    margin-bottom: 80px;
    text-align: center;
}

.bm-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.bm-intro .btn {
    margin: 0 auto;
}

/* Why Sandak Section */
.why-sandak-section {
    margin-bottom: 100px;
}

.why-title,
.how-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-8px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* How It Works Section */
.how-works-section {
    margin-top: 80px;
}

.process-content {
    text-align: center;
}

.process-heading {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-subheading {
    font-size: 1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-flow {
        grid-template-columns: 1fr;
    }
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 35px rgba(139, 26, 26, 0.3);
    transition: all var(--transition-smooth);
    border: 3px solid var(--white);
}

.process-step:hover .step-circle {
    box-shadow: 0 15px 50px rgba(139, 26, 26, 0.5);
    transform: scale(1.08);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    transition: color var(--transition-base);
}

.process-step:hover .step-label {
    color: var(--primary-light);
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Button Styling for Business Management */
.bm-intro .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bm-intro .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 26, 26, 0.35);
}

.how-works-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.how-works-section .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(139, 26, 26, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* ===== MARKETING SOLUTIONS SECTION ===== */
.marketing-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.ms-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.ms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

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

.ms-card-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.ms-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.ms-card-icon-bg {
    position: absolute;
    inset: -4px;
    background: var(--primary-subtle);
    border-radius: var(--radius-md);
    transform: rotate(6deg);
    transition: var(--transition-smooth);
}

.ms-card:hover .ms-card-icon {
    transform: rotate(-6deg) scale(1.05);
}

.ms-card:hover .ms-card-icon-bg {
    transform: rotate(-3deg) scale(1.1);
}

.ms-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
    transition: var(--transition-base);
    line-height: 1.4;
}

.ms-card:hover h3 {
    color: var(--primary);
}

.ms-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.75;
}

/* CTA Block */
.ms-cta-block {
    position: relative;
    background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

.ms-cta-deco {
    position: absolute;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.ms-cta-deco-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
    background: rgba(255, 255, 255, 0.03);
}

.ms-cta-deco-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -50px;
    background: rgba(255, 255, 255, 0.04);
}

.ms-cta-content {
    position: relative;
    z-index: 1;
}

.ms-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.ms-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.ms-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ms-cta-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .ms-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ms-cta-block {
        padding: 50px 50px;
    }
}

@media (max-width: 768px) {
    .ms-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ms-cta-block {
        padding: 40px 28px;
    }

    .ms-cta-title {
        font-size: 1.6rem;
    }

    .ms-cta-text {
        font-size: 0.95rem;
    }

    .ms-cta-btn {
        padding: 14px 36px;
        font-size: 0.95rem;
    }
}

/* ===== TRAINING PROGRAMS SECTION ===== */
.training-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* Tabs */
.tp-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tp-tab {
    padding: 12px 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-subtle);
    background: transparent;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: inherit;
    letter-spacing: 0.3px;
}

.tp-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-subtle);
}

.tp-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

/* Cards grid */
.tp-tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.tp-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.tp-card-featured {
    border: 2px solid var(--primary);
}

.tp-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

[dir="rtl"] .tp-badge {
    left: auto;
    right: 18px;
}

.tp-card-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tp-color-red    { background: var(--primary); }
.tp-color-gold   { background: var(--accent-gold); }
.tp-color-blue   { background: #2563EB; }
.tp-color-teal   { background: #0F9E74; }
.tp-color-purple { background: #7C3AED; }

/* Icons */
.tp-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    margin-top: 8px;
    transition: var(--transition-smooth);
}

.tp-card:hover .tp-card-icon { transform: scale(1.08); }

.tp-icon-red    { background: rgba(139,26,26,0.1);  color: var(--primary); }
.tp-icon-gold   { background: rgba(201,168,76,0.12); color: var(--accent-gold); }
.tp-icon-blue   { background: rgba(37,99,235,0.1);  color: #2563EB; }
.tp-icon-teal   { background: rgba(15,158,116,0.1); color: #0F9E74; }
.tp-icon-purple { background: rgba(124,58,237,0.1); color: #7C3AED; }

.tp-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.tp-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

/* Skill pills */
.tp-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.tp-skills span {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--light-gray);
    color: var(--text-gray);
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Card footer */
.tp-card-footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 14px;
    margin-top: auto;
}

.tp-cert {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* How it works */
.tp-how-section {
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin-bottom: 40px;
    text-align: center;
}

.tp-how-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 36px;
}

.tp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.tp-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 160px;
}

.tp-step-num {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(139,26,26,0.3);
}

.tp-step-connector {
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(139,26,26,0.2));
    z-index: 0;
}

[dir="rtl"] .tp-step-connector {
    right: 50%;
    left: auto;
    transform: scaleX(-1);
}

.tp-step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.tp-step-hint {
    font-size: 0.78rem;
    color: var(--text-gray);
    line-height: 1.5;
    padding: 0 8px;
}

/* CTA */
.tp-cta {
    background: linear-gradient(135deg, var(--primary-deeper), var(--primary-dark), var(--primary));
    border-radius: var(--radius-xl);
    padding: 44px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-primary);
}

.tp-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.tp-cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
}

.tp-cta-btn {
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--white) !important;
    color: var(--primary) !important;
}

.tp-cta-btn:hover {
    background: var(--accent-gold) !important;
    color: var(--white) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .tp-tracks-grid { grid-template-columns: repeat(2, 1fr); }
    .tp-cta { padding: 36px 40px; }
}

@media (max-width: 768px) {
    .tp-tracks-grid { grid-template-columns: 1fr; gap: 16px; }
    .tp-steps { flex-direction: column; align-items: flex-start; gap: 16px; }
    .tp-step { flex-direction: row; max-width: 100%; gap: 16px; text-align: right; align-items: flex-start; }
    .tp-step-connector { display: none; }
    .tp-step-num { flex-shrink: 0; }
    .tp-how-section { padding: 32px 20px; }
    .tp-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
    .tp-cta-text h3 { font-size: 1.2rem; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-deeper);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--white);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

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

.footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}

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

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

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

.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--primary-light);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    background: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.footer-bottom .fa-heart {
    color: #FF6B9D;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6)) drop-shadow(0 0 4px rgba(255, 165, 0, 0.3));
    text-shadow: 0 0 12px rgba(255, 107, 157, 0.5);
    font-weight: bold;
    margin: 0 4px;
}

@keyframes heartbeat {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6)) drop-shadow(0 0 4px rgba(255, 165, 0, 0.3));
    }
    25% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.8)) drop-shadow(0 0 8px rgba(255, 165, 0, 0.4));
    }
    50% { 
        transform: scale(1.25);
        filter: drop-shadow(0 0 16px rgba(255, 107, 157, 1)) drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
    }
    75% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.8)) drop-shadow(0 0 8px rgba(255, 165, 0, 0.4));
    }
    100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6)) drop-shadow(0 0 4px rgba(255, 165, 0, 0.3));
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablets */
@media (max-width: 1024px) {
    .services-hub-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .counters-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

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

    .tech-card-wide .tech-card-content {
        grid-template-columns: auto 1fr;
    }

    .tech-card-wide .tech-tags {
        grid-row: auto;
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        margin-top: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-deeper);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 12px 20px;
        width: 100%;
        text-align: left;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
        margin-top: 8px;
        max-width: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 12px 30px;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 4px;
    }

    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .dropdown-toggle::before {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .counters-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 24px;
    }

    .counter-number {
        font-size: 2rem;
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Business Management Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .process-flow {
        gap: 30px;
    }

    .process-flow::before {
        display: none;
    }

    .why-title,
    .how-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .process-heading {
        font-size: 1.4rem;
    }

    .bm-description {
        font-size: 1rem;
    }

    .bm-intro .btn {
        padding: 12px 32px;
        font-size: 0.9rem;
    }

    .how-works-section .btn {
        padding: 14px 36px;
        font-size: 0.95rem;
    }

    /* Tech */
    .tech-section {
        padding: 70px 0;
    }

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

    .tech-orbit-wrapper {
        margin-bottom: 50px;
    }

    .tech-orbit {
        width: 220px;
        height: 220px;
    }

    .orbit-ring-3 {
        width: 220px;
        height: 220px;
        margin: -110px 0 0 -110px;
    }

    .orbit-ring-2 {
        width: 170px;
        height: 170px;
        margin: -85px 0 0 -85px;
    }

    .orbit-ring-1 {
        width: 130px;
        height: 130px;
        margin: -65px 0 0 -65px;
    }

    .tech-card-wide .tech-card-content {
        grid-template-columns: 1fr;
    }

    .tech-card-wide .tech-icon-box {
        grid-row: auto;
        margin-bottom: 16px;
    }

    .tech-card-wide .tech-tags {
        grid-row: auto;
        grid-column: 1;
        flex-direction: row;
        align-items: flex-start;
        margin-top: 14px;
    }

    .tech-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .counters-bar {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
