* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: normal;
}

:root {
    --primary-blue: #1e5ba8;
    --secondary-blue: #0d2d5e;
    --accent-blue: #2196F3;
    --light-blue: #4dabf7;
    --dark-navy: #0a1929;
    --green: #1b5e3f;
    --burgundy: #7a2231;
    --text-white: #ffffff;
    --text-light: #e8eaed;
    --text-dark: #1a1a1a;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed navbar */
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 25, 41, 1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-it {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(33, 150, 243, 0.1);
    color: var(--accent-blue);
}

.nav-link.active {
    color: var(--accent-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-blue);
}

.btn-nav {
    background: var(--accent-blue);
    color: var(--text-white) !important;
    padding: 10px 25px;
    margin-left: 10px;
}

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

/* ---- End Nav ---- */

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Hero Section - New Design */
.hero-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-new-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
}

.hero-new-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle-small {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #8b1538;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hero-main-title {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: #8b1538;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-new-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-new-cta {
    margin-top: 30px;
}

.btn-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-new-primary {
    background: #2c3e50;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-new-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-new-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-new-image {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-card {
    background: #2c3e50;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero-card-content {
    padding: 40px;
    color: white;
}

.hero-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e8eaed;
    margin-bottom: 0;
}

.hero-card-image {
    position: relative;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 20px;
}

.placeholder-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.support-illustration {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Section - Old (Keeping for backward compatibility) */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 50%, #2a5298 100%);
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230a1929;stop-opacity:1" /><stop offset="100%" style="stop-color:%232a5298;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="800"/></svg>'),
        radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(76, 175, 240, 0.2) 0%, transparent 50%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(33, 150, 243, 0.1) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: techPattern 20s linear infinite;
}

@keyframes techPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 41, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.professional {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.it-services {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.it-text {
    color: var(--accent-blue);
    font-size: 5rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.secure {
    color: var(--accent-blue);
    font-weight: 600;
}

.hero-divider {
    width: 300px;
    height: 3px;
    background: var(--text-white);
    margin: 30px auto;
}

.hero-serving {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.hero-audience {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.businesses {
    color: var(--accent-blue);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
/* Services Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 70px 20px 60px;
    text-align: center;
    color: var(--text-white);
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Services CTA */
.services-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 20px;
}

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

.services-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.services-cta p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 28px;
}

.services-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark-navy);
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-variant-ligatures: none;
    font-variant-numeric: normal;
    -webkit-font-smoothing: antialiased;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card.essential .card-header {
    background: linear-gradient(135deg, var(--green) 0%, #2d7f5a 100%);
}

.service-card.professional .card-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.service-card.premium .card-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, #a03246 100%);
}

.card-header {
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0;
    text-transform: none;
    color: white;
}

.card-header .card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
    color: white;
}

.card-body {
    padding: 30px 25px;
    flex-grow: 1;
    font-family: 'Montserrat', sans-serif;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}

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

.service-list .icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-right: 10px;
    flex-shrink: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

.service-list .text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.service-list small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
}

.card-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.support-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 12px;
}
    margin-bottom: 12px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.btn-card {
    display: inline-block;
    background: var(--accent-blue);
    color: #fff;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-top: -40px;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    color: var(--text-white);
}

.why-choose-us .section-title {
    color: var(--text-white);
}

.why-choose-us .section-title::after {
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* About Us Section */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Team grid */
.team-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
}

.team-card {
    flex: 1;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid var(--accent-blue);
}

.team-photo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.88rem;
    color: var(--accent-blue);
    font-weight: 500;
}

/* Brief summary */
.about-summary {
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f4fd 100%);
    border-left: 4px solid var(--accent-blue);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 10px;
}

.about-summary p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 20px;
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: bold;
}

.about-feature strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Support Section */
.support-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: -40px;
    margin-bottom: 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.support-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.support-card h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 25px;
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.resource-list {
    margin-top: 20px;
}

.resource-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}

.resource-item strong {
    display: block;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.resource-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.resource-item a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.resource-item a:hover {
    text-decoration: underline;
}

.sla-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
}

.sla-section h3 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 30px;
    text-align: center;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sla-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.sla-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sla-card.highlighted {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border-color: var(--accent-blue);
}

.sla-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.sla-card.highlighted h4 {
    color: white;
}

.sla-card ul {
    list-style: none;
    padding: 0;
}

.sla-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.sla-card.highlighted ul li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sla-card ul li:last-child {
    border-bottom: none;
}

.support-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-cta h3 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.support-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.booking-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.booking-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: -40px;
    margin-bottom: 50px;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.booking-option {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-option h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.booking-option > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Appointment Form Styles */
.appointment-form {
    margin-top: 30px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

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

.btn-large {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

.btn-loader {
    display: inline-block;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Calendly Container */
.calendly-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Setup Instructions */
.setup-instructions {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.instructions-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.instructions-card h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.instructions-card ol {
    margin: 20px 0;
    padding-left: 25px;
}

.instructions-card ol li {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.instructions-card code {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.instructions-card a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.instructions-card a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: var(--accent-blue);
}

.tagline {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-top: 60px;
}

.simplify {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--text-white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    /* New Hero Responsive */
    .hero-new {
        padding: 40px 20px 60px;
        min-height: auto;
    }

    .hero-new-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-subtitle-small {
        font-size: 0.95rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-new-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-card-content {
        padding: 30px 25px;
    }

    .hero-card-title {
        font-size: 1.6rem;
    }

    .hero-card-text {
        font-size: 0.95rem;
    }

    .btn-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 25, 41, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

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

    .nav-link {
        width: 100%;
        padding: 15px 20px;
    }

    .btn-nav {
        margin-left: 0;
        margin-top: 10px;
    }

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

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 150px;
    }

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

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

    .support-buttons {
        flex-direction: column;
    }

    .support-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .professional {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .it-services {
        font-size: 2.5rem;
    }

    .it-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-audience {
        font-size: 1.5rem;
    }

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

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

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

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

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .professional {
        font-size: 1rem;
    }

    .it-services {
        font-size: 2rem;
    }

    .it-text {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .service-list .text {
        font-size: 0.9rem;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

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

    .booking-option {
        padding: 25px;
    }

    .instructions-card {
        padding: 25px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}

