:root {
    --primary-orange: #ff6600;
    --primary-blue: #00aeef;
    --primary-green: #4cd137;
    --primary-yellow: #fbc531;
    --dark-bg: #0a0a0c;
    --darker-bg: #050505;
    --card-bg: #151518;
    --text-white: #ffffff;
    --text-gray: #a0a0a5;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

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

/* Header & Nav */
header {
    background-color: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

.btn-contact {
    background-color: var(--text-white);
    color: var(--dark-bg) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.highlight-green { color: var(--primary-green); }
.highlight-yellow { color: var(--primary-yellow); }

/* Solutions Overview Grid */
.solutions-overview {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.solutions-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.solution-card-main {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.solution-card-main:hover {
    transform: translateY(-10px);
    background-color: #1a1a1d;
}

.card-header {
    margin-bottom: 20px;
}

.card-header i {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.card-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-link {
    margin-top: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--text-white);
}

/* Project Borders */
.orange-border { border-top: 4px solid var(--primary-orange); }
.blue-border { border-top: 4px solid var(--primary-blue); }
.green-border { border-top: 4px solid var(--primary-green); }
.yellow-border { border-top: 4px solid var(--primary-yellow); }

.orange-border i { color: var(--primary-orange); }
.blue-border i { color: var(--primary-blue); }
.green-border i { color: var(--primary-green); }
.yellow-border i { color: var(--primary-yellow); }

.orange-border .card-footer { background: linear-gradient(to right, var(--primary-orange), transparent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.blue-border .card-footer { background: linear-gradient(to right, var(--primary-blue), transparent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.green-border .card-footer { background: linear-gradient(to right, var(--primary-green), transparent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.yellow-border .card-footer { background: linear-gradient(to right, var(--primary-yellow), transparent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.overview-mission {
    text-align: center;
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.overview-mission span {
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('it_guardian_netcontrol_hero_1778260049302.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-blue { color: var(--primary-blue); }
.highlight-orange { color: var(--primary-orange); }

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-blue {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

/* Common Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-header .orange { color: var(--primary-orange); }
.section-header .blue { color: var(--primary-blue); }

.slogan {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Showcase Split Layout */
.showcase-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.showcase-split.reverse {
    flex-direction: row-reverse;
}

.left-align {
    text-align: left;
}

.device-img-green {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(76, 209, 55, 0.2));
    border-radius: 20px;
}

.device-img-blue {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 174, 239, 0.2));
    border-radius: 20px;
}

.device-img-yellow {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(251, 197, 49, 0.2));
    border-radius: 20px;
}

.icon-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--glass-border);
}

.icon-placeholder i {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.icon-placeholder.yellow { color: var(--primary-yellow); border-color: var(--primary-yellow); }

/* Colors for new sections */
.green { color: var(--primary-green); }
.yellow { color: var(--primary-yellow); }

.section-visionguard { background-color: var(--darker-bg); }
.section-alerta { background-color: var(--dark-bg); }

/* NetControl Showcase */
.netcontrol-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.showcase-content {
    flex: 1.5;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 102, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card i {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
}

.service-card i.orange { color: var(--primary-orange); }
.service-card i.blue { color: var(--primary-blue); }

/* Plans Container */
.plans-container {
    text-align: center;
}

.plans-container h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: var(--card-bg);
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.plan-card h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-card .for {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.plan-card ul {
    list-style: none;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.plan-card ul li i {
    width: 20px;
    height: 20px;
    color: #4cd137;
}

/* Featured Plans */
.featured-orange {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.1) 0%, rgba(21, 21, 24, 1) 100%);
    transform: scale(1.05);
}

.featured-blue {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.1) 0%, rgba(21, 21, 24, 1) 100%);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-orange);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
}

.featured-blue .badge {
    background-color: var(--primary-blue);
}

/* Sections Colors */
.section-netcontrol {
    background-color: var(--darker-bg);
}

/* Why Choose Us Section */
.section-why {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--glass-border);
}

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

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.why-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.why-list i.blue { color: var(--primary-blue); }
.why-list i.orange { color: var(--primary-orange); }

.ideal-for {
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.ideal-for h3 {
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

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

.ideal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.ideal-item i {
    color: var(--primary-blue);
    width: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.1);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    align-self: flex-start;
}

.footer-contact-info {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact-info i {
    margin-right: 8px;
    color: var(--primary-orange);
    vertical-align: middle;
}

.footer-links h4, .footer-location h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-orange, .featured-blue { transform: scale(1); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 40px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    
    .netcontrol-showcase {
        flex-direction: column;
        text-align: center;
    }

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

    .showcase-split, .showcase-split.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .left-align {
        text-align: center;
    }

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