/* =========================================
   DL-INFOTECH MASTER STYLESHEET
   ========================================= */

/* --- Variables & Brand Colors --- */
:root {
    --primary-orange: #FF8C00;
    --secondary-purple: #800080;
    --bg-dark: #1A1A1A;
    --bg-darker: #111111;
    --bg-card: #252525;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
}

/* --- Global Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    /* Add padding to account for fixed navbar */
    padding-top: 80px; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* --- Global Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    width: 40px; 
    height: 40px; 
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-purple)); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.2rem;
}

.logo-text h2 {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-weight: 300;
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover { background-color: #e67e00; border-color: #e67e00; }

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

.btn-secondary:hover { background-color: var(--text-white); color: var(--secondary-purple); }

/* --- Section Headers --- */
.section-title, .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { font-size: 1.1rem; color: var(--text-gray); max-width: 700px; margin: 0 auto; }

/* --- Hero Sections (Shared structural styles) --- */
.hero {
    min-height: calc(100vh - 80px); /* Subtract navbar height */
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-gradient-bg {
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.85), rgba(128, 0, 128, 0.85)), var(--bg-dark);
}

.page-header {
    text-align: center;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(17, 17, 17, 0.9)), 
                linear-gradient(45deg, var(--primary-orange), var(--secondary-purple));
}

.page-header h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.page-header p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; color: var(--text-gray); }

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    background: linear-gradient(45deg, var(--secondary-purple), var(--bg-darker));
    padding: 5rem 5%;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }

/* --- Mobile Navigation Adjustments --- */
@media (max-width: 768px) {
    .nav-links { display: none; /* In a real app, you'd add a hamburger menu here */ }
    .hero-content h1 { font-size: 2.5rem; }
}

	/* Pricing Cards */
        .pricing-section {
            background-color: var(--bg-darker);
        }

        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .pricing-card {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            flex: 1;
            min-width: 320px;
            max-width: 500px;
            border: 1px solid #333;
            position: relative;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .pricing-card .ideal-for {
            font-size: 0.9rem;
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: block;
        }

        .pricing-card ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .pricing-card li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        /* Highlighted Card */
        .pricing-card.highlight {
            border: 2px solid transparent;
            background-clip: padding-box;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Create the gradient border */
        .pricing-card.highlight::before {
            content: '';
            position: absolute;
            top: -2px; right: -2px; bottom: -2px; left: -2px;
            z-index: -1;
            border-radius: 14px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-purple));
        }

        .badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: linear-gradient(45deg, var(--primary-orange), var(--secondary-purple));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Features & Add-ons Grid */
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-box {
            background: var(--bg-darker);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-purple);
        }

        .feature-box h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-white);
        }

        .feature-box p { color: var(--text-gray); font-size: 0.95rem; }

        /* FAQ Section */
        .faq-section { background-color: var(--bg-darker); }
        .faq-item {
            margin-bottom: 2rem;
            border-bottom: 1px solid #333;
            padding-bottom: 1.5rem;
        }
        .faq-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-orange); }
        .faq-item p { color: var(--text-gray); }

/* Story Section */
        .story-section { background-color: var(--bg-dark); }
        .story-section p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-gray); }

        /* Founder Section */
        .founder-section {
            background-color: var(--bg-darker);
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .founder-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #333; /* Placeholder for your photo */
            border-radius: 10px;
            border: 4px solid var(--secondary-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
        }

        .founder-text {
            flex: 2;
            min-width: 300px;
        }
        
        .founder-text p { margin-bottom: 1.5rem; color: var(--text-gray); }
        
        .quote {
            font-style: italic;
            font-weight: 600;
            border-left: 4px solid var(--primary-orange);
            padding-left: 1.5rem;
            margin-top: 2rem;
            color: var(--text-white);
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .value-card {
            background: #252525;
            padding: 2rem;
            border-radius: 8px;
            border-top: 4px solid var(--primary-orange);
        }

        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .value-card p { color: var(--text-gray); font-size: 0.95rem; }

/* --- Contact Page Specifics --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid var(--secondary-purple);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--bg-darker);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Note: Specific grid styles for About and Services pages remain unchanged but are included in the HTML below using inline or linked specific classes where necessary for brevity, though ideally they'd all live here. */
