/* --- TECHTIX CSS STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #f04e23;    /* Techtix Vibrant Orange */
    --secondary: #121212;  /* Techtix Deep Charcoal */
    --accent: #f04e23;     /* Matching Accent */
    --light: #f4f6f8;      /* Cool modern gray */
    --dark: #1e1e1e;
    --text-grey: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span { margin-right: 20px; }
.top-bar-info i { color: var(--accent); margin-right: 5px; }

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover img { opacity: 0.8; }

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    transition: var(--transition) !important;
}

.btn-nav:hover { background: var(--secondary) !important; }

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Page Headers (For internal pages) */
.page-header {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Home Hero Section */
.hero {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.8)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero h1 span { color: var(--primary); }

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    margin: 0 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Shared Sections */
.section-padding { padding: 80px 0; flex: 1; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p { color: var(--text-grey); }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
}

.card:hover { transform: translateY(-10px); }

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(240, 78, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i { font-size: 1.8rem; color: var(--primary); }

.card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.card p { color: var(--text-grey); font-size: 0.95rem; }

/* Regions / Split Layout */
.bg-light { background-color: var(--light); }

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-block { flex: 1; }

.visual-block { 
    flex: 1; 
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--dark);
    font-weight: 600;
}

.check-list i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.flag { font-size: 2rem; margin-right: 15px; }
.loc-details h4 { color: var(--secondary); margin-bottom: 5px; }
.loc-details p { font-size: 0.85rem; color: var(--text-grey); margin: 0; }

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    background: #f9f9f9;
}

textarea { resize: vertical; margin-bottom: 20px; }

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

button[type="submit"]:hover { background: var(--secondary); }

/* Footer */
footer {
    background: #0a0a0a;
    color: #888;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    .hamburger { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    .split-layout { flex-direction: column; }
    .form-group { flex-direction: column; gap: 15px; }
}