/* =============================================
   DigiTech Globals - Portfolio Stylesheet
   Modern Enterprise Blue Theme
   FULLY RESPONSIVE & ELASTIC DESIGN
   ============================================= */

:root {
    --primary: #0A2540;
    --primary-light: #1E6FFF;
    --primary-dark: #061829;
    --accent: #F59E0B;
    --accent-light: #fbbf24;
    --dark: #0F172A;
    --dark-lighter: #1E293B;
    --dark-card: #162033;
    --light-section: #F8FAFC;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #333333;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    
    /* Fluid Typography Scale */
    --font-xs: clamp(0.7rem, 1.5vw, 0.8rem);
    --font-sm: clamp(0.8rem, 1.8vw, 0.9rem);
    --font-base: clamp(0.9rem, 2vw, 1rem);
    --font-md: clamp(1rem, 2.2vw, 1.1rem);
    --font-lg: clamp(1.1rem, 2.5vw, 1.25rem);
    --font-xl: clamp(1.3rem, 3vw, 1.5rem);
    --font-2xl: clamp(1.5rem, 3.5vw, 2rem);
    --font-3xl: clamp(1.8rem, 4vw, 2.25rem);
    --font-hero: clamp(1.5rem, 5vw, 2.25rem);
    
    /* Fluid Spacing */
    --space-xs: clamp(0.25rem, 1vw, 0.5rem);
    --space-sm: clamp(0.5rem, 2vw, 1rem);
    --space-md: clamp(1rem, 3vw, 1.5rem);
    --space-lg: clamp(1.5rem, 4vw, 2.5rem);
    --space-xl: clamp(2rem, 5vw, 4rem);
    --space-2xl: clamp(3rem, 8vw, 6rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Navigation */
.navbar {
    background: var(--dark);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.logo i {
    font-size: 22px;
    color: var(--accent);
}

.logo strong {
    color: var(--accent);
}

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

.nav-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-radius: 25px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    background: var(--gradient-accent);
    border-color: var(--accent);
    color: var(--dark);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--accent);
}

.nav-link.active:hover {
    background: var(--gradient-accent);
    border-color: var(--accent);
    color: var(--dark);
}

.nav-app-btn {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: var(--accent) !important;
    padding: 8px 16px !important;
    border-radius: 25px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.nav-app-btn::after {
    display: none !important;
}
.nav-app-btn:hover {
    background: var(--gradient-accent);
    border-color: var(--accent);
    color: var(--dark) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > .nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--dark-lighter);
    min-width: 260px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

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

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-muted);
    font-size: 13px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.dropdown-menu li a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: url('../images/HERO-BG.JPG') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(15, 23, 42, 0.80) 50%, rgba(30, 111, 255, 0.15) 100%);
    z-index: 0;
}

/* Minimal Hero Style */
.hero.hero-minimal::before {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.45) 0%, rgba(15, 23, 42, 0.40) 50%, rgba(30, 111, 255, 0.10) 100%);
}

.hero.hero-minimal .hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.4);
}

.hero.hero-minimal .hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero.hero-minimal .hero-buttons {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero.hero-minimal .hero-text h1 {
        font-size: 28px;
    }
    
    .hero.hero-minimal .hero-tagline {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero.hero-minimal .hero-text h1 {
        font-size: 24px;
    }
    
    .hero.hero-minimal .hero-tagline {
        font-size: 14px;
    }
}

.hero-bg {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-badge i {
    font-size: 14px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.25;
}

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

.hero-author {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.hero-author strong {
    color: var(--accent);
    font-style: normal;
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 14px;
}

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

.hero-trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.trust-item i {
    font-size: 20px;
    color: var(--accent);
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    padding: 50px 0;
    position: relative;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 20px;
    color: var(--accent);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* About & Stats Combined Section */
.about-stats-section {
    background: var(--dark-lighter);
    padding: 80px 0;
}

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

.about-stats-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-stats-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-stats-content h2 .text-accent {
    color: var(--accent);
}

.about-stats-content .author-line {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.about-stats-content .author-line strong {
    color: var(--accent);
    font-style: normal;
}

.about-stats-content .description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badges .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.trust-badges .trust-item i {
    font-size: 18px;
    color: var(--accent);
}

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

.stat-box {
    background: var(--dark-card);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.stat-box .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-box .stat-icon i {
    font-size: 20px;
    color: var(--dark);
}

.stat-box .stat-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

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

@media (max-width: 992px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-content {
        text-align: center;
    }
    
    .about-stats-numbers {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-stats-section {
        padding: 50px 0;
    }
    
    .about-stats-content {
        text-align: center;
    }
    
    .about-stats-content .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }
    
    .about-stats-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .about-stats-content .description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 15px;
    }
    
    .trust-badges .trust-item {
        font-size: 12px;
    }
    
    .trust-badges .trust-item i {
        font-size: 16px;
    }
    
    .about-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    
    .stat-box {
        padding: 20px 12px;
    }
    
    .stat-box .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .stat-box .stat-icon i {
        font-size: 16px;
    }
    
    .stat-box .stat-number {
        font-size: 24px;
    }
    
    .stat-box .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .about-stats-section {
        padding: 40px 0;
    }
    
    .about-stats-content .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .about-stats-content h2 {
        font-size: 24px;
    }
    
    .about-stats-content .description {
        font-size: 13px;
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .trust-badges .trust-item {
        font-size: 11px;
    }
    
    .about-stats-numbers {
        gap: 10px;
    }
    
    .stat-box {
        padding: 15px 10px;
        border-radius: 10px;
    }
    
    .stat-box .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-box .stat-icon i {
        font-size: 14px;
    }
    
    .stat-box .stat-number {
        font-size: 20px;
    }
    
    .stat-box .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .about-stats-content h2 {
        font-size: 18px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .stat-box .stat-number {
        font-size: 18px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--dark-lighter);
}

/* Why Choose Us Section */
.why-us-section {
    padding: 80px 0;
    background: var(--dark);
}

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

.section-title.left-aligned {
    text-align: left;
    margin-bottom: 30px;
}

.section-title.left-aligned h2::after {
    left: 0;
    transform: none;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
}

.why-icon i {
    font-size: 24px;
    color: var(--accent);
}

.why-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.why-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-us-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--gradient-accent);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exp-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 12px;
    color: var(--dark);
    font-weight: 600;
    margin-top: 5px;
}

/* Technologies Section */
.tech-section {
    padding: 70px 0;
    background: var(--dark-lighter);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.tech-item {
    background: var(--dark-card);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.tech-item span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg-networking.jpg') center center / cover no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 14px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Mission & Vision Section */
.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-box,
.vision-box {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.mission-box:hover,
.vision-box:hover {
    border-color: var(--accent);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--dark);
}

.mission-box h2,
.vision-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.mission-box p,
.vision-box p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.value-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-box,
    .vision-box {
        padding: 30px 20px;
    }
    
    .mission-box h2,
    .vision-box h2 {
        font-size: 20px;
    }
}

/* Overview Hero Section */
.overview-hero-section {
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}

.overview-intro {
    max-width: 800px;
    margin: 0 auto;
}

.overview-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.overview-intro h2 .text-accent {
    color: var(--accent);
}

.overview-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .overview-intro h2 {
        font-size: 28px;
    }
    
    .overview-description {
        font-size: 14px;
    }
}

/* Page Header - Compact */
.page-header {
    background: var(--gradient);
    padding: 70px 0 18px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.page-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 14px;
}

/* About Page - New Layout with Small Round Profile */
.about-page {
    padding: 60px 0;
    background: var(--dark);
    position: relative;
}

.about-page.with-bg {
    background: url('../images/bg-about.jpg') center center / cover no-repeat;
}

.about-page.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.70) 0%, rgba(15, 23, 42, 0.65) 100%);
    z-index: 0;
}

.about-page.with-bg > .container {
    position: relative;
    z-index: 1;
}

.about-intro-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-profile-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-profile-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-bio h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.about-bio .subtitle {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-bio p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Skills Section */
.skills-section {
    padding: 60px 0;
    background: var(--dark-lighter);
}

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

.skill-card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.skill-card .skill-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.skill-card .skill-icon i {
    font-size: 20px;
    color: var(--white);
}

.skill-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.skill-card .skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.skill-card .skill-progress {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
}

.skill-card .skill-percent {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

/* Content Placeholder Page */
.content-page {
    padding: 80px 0;
    background: var(--dark);
    min-height: 50vh;
}

.content-placeholder {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.placeholder-icon i {
    font-size: 28px;
    color: var(--white);
}

.content-placeholder h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.content-placeholder p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Contact Page - Redesigned Professional Layout */
.contact-page-section {
    padding: 60px 0;
    background: var(--dark);
    position: relative;
}

.contact-page-section.with-bg {
    background: url('../images/bg-contact.jpg') center center / cover no-repeat;
}

.contact-page-section.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.70) 0%, rgba(15, 23, 42, 0.65) 100%);
    z-index: 0;
}

.contact-page-section.with-bg > .container {
    position: relative;
    z-index: 1;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--dark-lighter);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 16px;
    color: var(--dark);
}

.contact-info-text .label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-info-text a,
.contact-info-text span {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.contact-social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.contact-social > span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

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

.contact-social .social-icons a {
    width: 38px;
    height: 38px;
    background: var(--dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-social .social-icons a:hover {
    background: var(--accent);
    color: var(--dark);
}

.contact-form-card {
    background: var(--dark-lighter);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.contact-form select option {
    background: var(--dark);
    color: var(--white);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--dark-lighter);
}

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

.service-card {
    background: var(--dark-card);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon i {
    font-size: 24px;
    color: var(--dark);
}

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

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 10px;
}

/* Service Page Content */
.service-header {
    padding: 70px 0 15px;
}

.service-header-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.service-header-icon i {
    font-size: 16px;
    color: var(--white);
}

.service-content {
    padding: 60px 0;
    background: var(--dark);
}

/* Service Page Backgrounds */
.service-page-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-page-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.70) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 0;
}

.service-page-bg > .container {
    position: relative;
    z-index: 1;
}

.bg-it-support { background-image: url('../images/big-it-support1.jpg'); }
.bg-endpoint { background-image: url('../images/bp-endpoint1.jpg'); }
.bg-cloud { background-image: url('../images/bg-cloud.jpg'); }
.bg-networking { background-image: url('../images/bg-fibre-optic.jpg'); }
.bg-security { background-image: url('../images/bg-security.jpg'); }
.bg-automation { background-image: url('../images/bg-automation.jpg'); }

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-intro h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-intro p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon i {
    font-size: 20px;
    color: var(--dark);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-cta {
    background: var(--gradient);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.service-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.service-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.service-cta .btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

/* Footer - Left Aligned */
.footer {
    background: var(--dark-lighter);
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand > p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    text-align: left;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    text-align: left;
}

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

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.footer-contact i {
    color: var(--accent);
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   RESPONSIVE DESIGN - Desktop-like layout on all devices
   ============================================== */

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-description {
        margin: 0 auto 20px;
    }

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

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

/* Mobile & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-lighter);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        align-items: flex-start;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-left: 25px;
        padding-right: 20px;
        overflow-y: auto;
    }

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

    .nav-menu .nav-link {
        color: var(--accent);
        font-size: 13px;
        font-weight: 600;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
        padding: 10px 16px;
        border-radius: 25px;
        border: 1px solid rgba(245, 158, 11, 0.3);
        margin-bottom: 5px;
        display: inline-flex;
        width: auto;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--gradient-accent);
        border-color: var(--accent);
        color: var(--dark);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        min-width: auto;
        padding: 10px 0;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 15px;
        font-size: 12px;
        justify-content: flex-start;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section - Keep desktop structure */
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .hero-author {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 11px;
        white-space: nowrap;
    }

    .hero-trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .trust-item {
        font-size: 11px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .trust-item i {
        font-size: 16px;
    }

    /* Stats Section - 4 columns like desktop */
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 15px 8px;
        text-align: center;
    }

    .stat-number {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .stat-label {
        font-size: 9px;
        line-height: 1.3;
    }

    /* Why Us Section */
    .why-us-section {
        padding: 50px 0;
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-us-image {
        order: -1;
        max-width: 100%;
    }

    .why-us-image img {
        width: 100%;
        border-radius: 15px;
    }

    .why-feature {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .why-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .why-feature h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .why-feature p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Technologies Section - 6 columns like desktop */
    .tech-section {
        padding: 50px 0;
    }

    .tech-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }

    .tech-item {
        padding: 12px 6px;
        text-align: center;
    }

    .tech-item i {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .tech-item span {
        font-size: 8px;
        line-height: 1.2;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .cta-text h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .cta-text p {
        font-size: 13px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .cta-buttons .btn {
        padding: 10px 18px;
        font-size: 11px;
        white-space: nowrap;
    }

    /* Section Titles */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section-title p {
        font-size: 13px;
    }

    .section-title.left-aligned {
        text-align: center;
    }

    .section-title.left-aligned h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 12px;
    }

    /* Page Headers */
    .page-header {
        padding: 90px 0 25px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 14px;
    }

    .service-header {
        padding: 90px 0 25px;
    }

    .service-header-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .service-header-icon i {
        font-size: 20px;
    }

    /* Service Features - 2 columns */
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .feature-card h3 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* About Page */
    .about-intro-section {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: flex-start;
    }

    .about-profile-small {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .skill-item {
        padding: 12px 8px;
    }

    .skill-item i {
        font-size: 24px;
    }

    .skill-item span {
        font-size: 10px;
    }

    /* Contact Page */
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px;
    }

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

    /* Footer - 4 columns like desktop */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        text-align: left;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand .logo {
        font-size: 16px;
    }

    .footer-brand p {
        font-size: 11px;
        margin-top: 10px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        font-size: 11px;
    }

    .footer-contact li {
        font-size: 11px;
        justify-content: flex-start;
    }

    .footer-contact li i {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* YouTube Section */
    .youtube-section {
        padding: 50px 0;
    }

    .youtube-coming-soon {
        padding: 40px 25px;
    }

    .youtube-coming-soon > i {
        font-size: 60px;
    }

    .youtube-coming-soon h3 {
        font-size: 22px;
    }

    .youtube-coming-soon p {
        font-size: 14px;
    }

    /* Social Links */
    .social-links {
        justify-content: flex-start;
    }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 9px 14px;
        font-size: 10px;
    }

    .hero-trust-badges {
        gap: 12px;
    }

    .trust-item {
        font-size: 10px;
    }

    /* Stats - still 4 columns */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .stat-item {
        padding: 12px 5px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 8px;
    }

    /* Tech Grid - 6 columns */
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }

    .tech-item {
        padding: 10px 4px;
    }

    .tech-item i {
        font-size: 18px;
    }

    .tech-item span {
        font-size: 7px;
    }

    /* Services - 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: 15px 10px;
    }

    .service-card h3 {
        font-size: 12px;
    }

    .service-card p {
        font-size: 10px;
    }

    /* Service Features - 2 columns */
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 15px 10px;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 12px;
    }

    /* CTA */
    .cta-text h2 {
        font-size: 24px;
    }

    .cta-buttons .btn {
        padding: 9px 14px;
        font-size: 10px;
    }

    /* Skills - 3 columns */
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .skill-item {
        padding: 10px 5px;
    }

    .skill-item i {
        font-size: 20px;
    }

    .skill-item span {
        font-size: 9px;
    }

    /* Footer - 2x2 grid */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        font-size: 11px;
    }

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

    /* About */
    .about-intro-section {
        flex-direction: column;
        text-align: center;
    }

    .about-profile-small {
        margin: 0 auto;
    }

    /* Why Us */
    .why-feature {
        flex-direction: row;
        gap: 10px;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .why-feature h4 {
        font-size: 13px;
    }

    .why-feature p {
        font-size: 11px;
    }

    /* YouTube */
    .youtube-coming-soon {
        padding: 30px 20px;
    }

    .youtube-coming-soon > i {
        font-size: 50px;
    }

    .youtube-coming-soon h3 {
        font-size: 18px;
    }

    .youtube-coming-soon p {
        font-size: 12px;
    }
}

/* Extra Small Phones (max-width: 360px) */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 18px;
    }

    .hero-buttons .btn {
        padding: 8px 10px;
        font-size: 9px;
    }

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

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================
   YouTube Section
   ============================================= */
.youtube-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.youtube-section .section-title h2 i {
    color: #FF0000;
    margin-right: 10px;
}

.youtube-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.youtube-coming-soon {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.youtube-coming-soon > i {
    font-size: 80px;
    color: #FF0000;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.youtube-coming-soon h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.youtube-coming-soon p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 16px;
}

.youtube-coming-soon .btn {
    background: #FF0000;
    border-color: #FF0000;
}

.youtube-coming-soon .btn:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* =============================================
   Social Links
   ============================================= */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover i.fa-youtube {
    color: #FF0000;
}

.social-icon:hover i.fa-linkedin-in {
    color: #0077B5;
}

.social-icon:hover i.fa-twitter {
    color: #1DA1F2;
}

.social-icon:hover i.fa-facebook-f {
    color: #1877F2;
}

.social-icon:hover i.fa-instagram {
    color: #E4405F;
}

.social-icon.coming-soon {
    opacity: 0.4;
    cursor: not-allowed;
}

.social-icon.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .youtube-coming-soon {
        padding: 40px 25px;
    }
    
    .youtube-coming-soon > i {
        font-size: 60px;
    }
    
    .youtube-coming-soon h3 {
        font-size: 22px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* =============================================
   Contact Page Social Icons
   ============================================= */
.contact-social .social-icons a {
    transition: var(--transition);
}

.contact-social .social-icons a:hover i.fa-youtube {
    color: #FF0000;
}

.contact-social .social-icons a:hover i.fa-linkedin-in {
    color: #0077B5;
}

.contact-social .social-icons a:hover i.fa-twitter {
    color: #1DA1F2;
}

.contact-social .social-icons a:hover i.fa-facebook-f {
    color: #1877F2;
}

.contact-social .social-icons a:hover i.fa-instagram {
    color: #E4405F;
}

.contact-social .social-icons a:hover i.fa-whatsapp {
    color: #25D366;
}

.contact-social .social-icons a.coming-soon {
    opacity: 0.4;
    cursor: not-allowed;
}

.contact-social .social-icons a.coming-soon:hover {
    transform: none;
}

/* =============================================
   PRICING CALCULATOR SECTION
   ============================================= */
.pricing-section {
    padding: 80px 0;
    background: var(--dark);
}

.pricing-calculator {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.options-group {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.options-group > label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.options-group > label i {
    color: var(--accent);
}

.plan-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-left: 30px;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.input-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--dark-lighter);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--accent-light);
    transform: scale(1.1);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.input-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 6px 12px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    align-self: flex-start;
}

/* Hourly Services Add-ons */
.hourly-services {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hourly-service-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.hourly-service-item .service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--dark-lighter);
    cursor: pointer;
    transition: var(--transition);
}

.hourly-service-item .service-header:hover {
    background: rgba(245, 158, 11, 0.1);
}

.hourly-service-item input[type="checkbox"] {
    display: none;
}

.hourly-service-item .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.hourly-service-item input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.hourly-service-item input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--dark);
}

.hourly-service-item .service-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.hourly-service-item .service-rate {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.hourly-service-item .hours-slider {
    display: none;
    padding: 16px 20px;
    background: var(--dark-card);
    align-items: center;
    gap: 12px;
}

.hourly-service-item .hours-slider.active {
    display: flex;
}

.hourly-service-item .hours-slider span {
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hourly-service-item .hours-slider input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--dark-lighter);
    border-radius: 3px;
    outline: none;
}

.hourly-service-item .hours-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
}

.hours-value {
    min-width: 36px;
    padding: 4px 8px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
}

/* Calculator Result */
.calculator-result {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--accent);
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.result-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.result-price .currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-top: 8px;
}

.result-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.result-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
}

.price-breakdown {
    background: var(--dark-lighter);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:first-child {
    color: var(--text-muted);
}

.breakdown-item span:last-child {
    font-weight: 600;
    color: var(--white);
}

.result-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Pricing Rates Summary */
.pricing-rates-summary {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-rates-summary h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.rates-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rates-column h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rates-column ul {
    list-style: none;
}

.rates-column li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
}

.rates-column li strong {
    color: var(--white);
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-calculator {
        grid-template-columns: 1fr;
    }
    
    .calculator-result {
        position: static;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .options-group {
        padding: 20px;
    }
    
    .options-group > label {
        font-size: 16px;
    }
    
    .plan-description {
        padding-left: 0;
        font-size: 13px;
    }
    
    .input-group label {
        font-size: 13px;
    }
    
    .result-price .amount {
        font-size: 44px;
    }
    
    .result-price .currency {
        font-size: 22px;
    }
    
    .result-card {
        padding: 24px;
    }
    
    .pricing-rates-summary {
        display: none;
    }
    
    .hourly-service-item .service-header {
        padding: 14px 16px;
    }
    
    .hourly-service-item .service-name {
        font-size: 14px;
    }
    
    .hourly-service-item .service-rate {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .options-group {
        padding: 16px;
    }
    
    .options-group > label {
        font-size: 15px;
        gap: 10px;
    }
    
    .result-price .amount {
        font-size: 36px;
    }
    
    .result-price .currency {
        font-size: 18px;
        margin-top: 4px;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .price-breakdown {
        padding: 16px;
    }
    
    .breakdown-item {
        font-size: 13px;
        padding: 8px 0;
    }
}

/* =============================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ============================================= */

/* Mission & Vision Mobile */
@media (max-width: 768px) {
    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-box,
    .vision-box {
        padding: 30px 20px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .mission-icon i {
        font-size: 24px;
    }
    
    .mission-box h2,
    .vision-box h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .mission-box p,
    .vision-box p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .mission-box,
    .vision-box {
        padding: 24px 16px;
    }
    
    .mission-box h2,
    .vision-box h2 {
        font-size: 18px;
    }
    
    .mission-box p,
    .vision-box p {
        font-size: 13px;
    }
}

/* Skills Section Mobile */
@media (max-width: 768px) {
    .skills-section {
        padding: 50px 0;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .skill-card {
        padding: 20px 15px;
    }
    
    .skill-card .skill-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .skill-card .skill-icon i {
        font-size: 18px;
    }
    
    .skill-card h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .skill-card .skill-percent {
        font-size: 12px;
    }
    
    .value-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .skill-card {
        padding: 16px 12px;
    }
    
    .skill-card h3 {
        font-size: 12px;
    }
}

/* About Stats Section Mobile */
@media (max-width: 768px) {
    .about-stats-section {
        padding: 50px 0;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats-content {
        text-align: center;
    }
    
    .about-stats-content h2 {
        font-size: 24px;
    }
    
    .about-stats-content .description {
        font-size: 14px;
    }
    
    .about-stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-box .stat-number {
        font-size: 28px;
    }
    
    .stat-box .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-stats-content h2 {
        font-size: 24px;
    }
    
    .about-stats-content .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .stat-box {
        padding: 16px 12px;
    }
    
    .stat-box .stat-number {
        font-size: 24px;
    }
    
    .stat-box .stat-label {
        font-size: 11px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Service Content Mobile */
@media (max-width: 768px) {
    .service-content {
        padding: 50px 0;
    }
    
    .service-intro {
        margin-bottom: 40px;
    }
    
    .service-intro h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-intro p {
        font-size: 14px;
    }
    
    .service-cta {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .service-cta h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-cta p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Contact Page Mobile */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 50px 0;
    }
    
    .contact-info-card h2 {
        font-size: 22px;
    }
    
    .contact-info-card > p {
        font-size: 14px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .contact-info-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-info-icon i {
        font-size: 14px;
    }
    
    .contact-info-text a,
    .contact-info-text span {
        font-size: 13px;
    }
    
    .contact-form-card h3 {
        font-size: 18px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* Page Header Mobile */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 75px 0 18px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
}



/* Content Placeholder Mobile */
@media (max-width: 768px) {
    .content-page {
        padding: 50px 0;
        min-height: 40vh;
    }
    
    .content-placeholder {
        padding: 0 20px;
    }
    
    .placeholder-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .placeholder-icon i {
        font-size: 28px;
    }
    
    .content-placeholder h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .content-placeholder p {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Overview Page Mobile */
@media (max-width: 768px) {
    .overview-section {
        padding: 50px 0;
    }
    
    .overview-intro {
        margin-bottom: 30px;
    }
    
    .overview-intro h2 {
        font-size: 22px;
    }
    
    .overview-intro p {
        font-size: 14px;
    }
}

/* Buttons Mobile */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .btn-sm {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Generic Text Mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    h4 {
        font-size: 16px;
    }
    
    p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Ensure Touch Targets */
@media (max-width: 768px) {
    a, button, input[type="submit"], .btn {
        min-height: 44px;
    }
    
    .nav-link {
        padding: 10px 16px;
    }
    
    .dropdown-menu li a {
        min-height: 40px;
        display: flex;
        align-items: center;
    }
}

/* Fix Horizontal Scroll */
html, body {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
}

/* Image Mobile */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Academy Navigation Icon Spacing */
.nav-academy-link i.fa-graduation-cap {
    margin-right: 6px;
}

/* Courses Page Styles */
.courses-page {
    padding: 80px 0;
    background: var(--dark);
}

.courses-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select {
    padding: 12px 16px;
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    min-width: 180px;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-search {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.filter-search input {
    padding: 12px 16px 12px 45px;
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    width: 100%;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-search i {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: var(--text-muted);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Plans Page Styles */
.plans-page {
    padding-top: 80px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active,
.toggle-label:hover {
    color: var(--white);
}

.save-badge {
    background: #10B981;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-lighter);
    border-radius: 30px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background: var(--accent);
    border-radius: 50%;
    transition: 0.4s;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.money-back-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 28px;
    color: #10B981;
}

.guarantee-text h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.guarantee-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
    color: var(--white);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .courses-filters {
        flex-direction: column;
    }
    
    .filter-group select,
    .filter-search {
        width: 100%;
        min-width: unset;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
    }
    
    .money-back-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   SMART FEATURES & ANIMATIONS
   Attention-Grabbing Elements
   ============================================= */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered animations for grids */
.stagger-animate > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-animate.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animate.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animate.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animate.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animate.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animate.active > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-animate.active > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-animate.active > *:nth-child(8) { transition-delay: 0.8s; }

.stagger-animate.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Glow Effect */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent), 0 0 15px var(--accent); }
    50% { box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent); }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* Shimmer Effect for Loading */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Gradient Border Animation */
@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border {
    position: relative;
    background: var(--dark-card);
    border-radius: 15px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), var(--primary-light), var(--accent), var(--primary-light));
    background-size: 300% 300%;
    border-radius: 17px;
    z-index: -1;
    animation: gradient-border 4s ease infinite;
}

/* Typing Effect */
@keyframes blink {
    0%, 50% { border-color: var(--accent); }
    51%, 100% { border-color: transparent; }
}

.typing-effect {
    border-right: 3px solid var(--accent);
    animation: blink 1s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s ease;
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.ripple:active::after {
    transform: scale(2);
    opacity: 1;
    transition: 0s;
}

/* Tilt Effect on Cards */
.tilt-card {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
}

/* Live Status Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: #22c55e;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

/* Progress Bar Animation */
.progress-bar {
    height: 8px;
    background: var(--dark-lighter);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Back to Top Button Enhanced */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

/* Particle Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
    50% { transform: translateY(-200px) translateX(-30px); opacity: 0.3; }
    75% { transform: translateY(-100px) translateX(-50px); opacity: 0.6; }
}

/* Smart Card Hover */
.smart-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smart-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 158, 11, 0.1);
}

/* Text Gradient Animation */
.text-gradient-animate {
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s linear infinite;
}

@keyframes gradient-text {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Elastic Container */
.elastic-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 40px);
}

/* Fluid Grid System */
.fluid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(15px, 3vw, 30px);
}

/* Aspect Ratio Boxes */
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }
.aspect-card { aspect-ratio: 4/3; }

/* Touch-Friendly Targets */
@media (pointer: coarse) {
    .btn, .nav-link, a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    :root {
        --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .back-to-top, .scroll-progress {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --accent: #FFB800;
        --text-muted: #cccccc;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Ultra-wide Screen Support */
@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
    }
    
    html {
        font-size: 18px;
    }
}

/* =============================================
   MOBILE BACKGROUND IMAGE FIX
   Ensures backgrounds scale properly on all devices
   ============================================= */

/* Base background settings for all sections with backgrounds */
.hero-section,
.hero,
.cta-section,
.about-hero,
.contact-hero,
.services-hero,
.page-header,
[class*="bg-"] {
    background-attachment: scroll !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Mobile-specific background fixes */
@media (max-width: 768px) {
    .hero-section,
    .hero,
    .cta-section,
    .about-hero,
    .contact-hero,
    .services-hero,
    .page-header,
    [class*="bg-"] {
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    
    /* Hero section mobile background */
    .hero {
        background-size: cover;
        background-position: center top;
        min-height: auto;
    }
    
    /* CTA section mobile background */
    .cta-section {
        background-size: cover;
        background-position: center center;
    }
    
    /* Service page backgrounds */
    .service-header {
        background-size: cover;
        background-position: center center;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .hero-section,
    .hero,
    .cta-section,
    .page-header {
        background-size: cover;
        background-position: center center;
    }
}

/* iOS Safari specific fix */
@supports (-webkit-touch-callout: none) {
    .hero-section,
    .hero,
    .cta-section,
    .about-hero,
    .contact-hero,
    .services-hero,
    .page-header {
        background-attachment: scroll !important;
    }
}
