/*
Theme Name: Gulf Tech Child Theme
Template: generatepress
Description: Custom enterprise child theme for Gulf Tech Systems
Author: Gulf Tech
Version: 1.0.0
*/

/* --- Global Resets & Typography --- */
* { box-sizing: border-box; }
body {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f4f4f5;
}
.gt-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Splash Screen Styles --- */
#gt-splash-screen {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #000000; z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease-out;
}
#gt-splash-screen video { width: 100%; height: 100%; object-fit: cover; }

/* --- Header Styles --- */
.gt-site-header {
    background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px 0; position: sticky; top: 0; z-index: 999;
}
.gt-header-flex { display: flex; justify-content: space-between; align-items: center; }
.gt-logo a { text-decoration: none; }
.gt-logo img { max-height: 60px; width: auto; display: block; }
.gt-main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 35px; }
.gt-main-nav a { text-decoration: none; color: #4b5563; font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.gt-main-nav a:hover { color: #e60000; }
.gt-btn-small { background-color: #e60000; color: #ffffff; padding: 12px 24px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.gt-btn-small:hover { background-color: #cc0000; transform: translateY(-2px); }

/* --- Hero Section --- */
.gt-hero {
    background-color: #0a0a0a;
    /* Added your image with a dark transparent overlay so text remains perfectly readable */
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('https://gulfdukaan.com/wp-content/uploads/2026/05/image_17ebfa.jpg');
    background-size: cover; 
    background-position: center;
    background-attachment: fixed; /* Creates a cool parallax effect when scrolling */
    color: #ffffff; 
    padding: 140px 20px; 
    text-align: center; 
    border-bottom: 4px solid #e60000;
}
.gt-hero h1 { font-size: 3.5rem; font-weight: 800; margin: 0 0 20px 0; line-height: 1.2; letter-spacing: -1px; }
.gt-hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px auto; color: #d1d5db; font-weight: 400; }
.gt-btn { background-color: #e60000; color: #ffffff; padding: 16px 40px; text-decoration: none; font-weight: 600; border-radius: 6px; font-size: 1.1rem; display: inline-block; border: none; transition: all 0.3s; cursor: pointer; }
.gt-btn:hover { background-color: #cc0000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3); }

/* --- Services Section --- */
.gt-services { padding: 100px 0; background-color: #ffffff; text-align: center; }
.gt-section-title { font-size: 2.5rem; font-weight: 800; color: #111827; margin: 0 0 60px 0; letter-spacing: -1px; }
.gt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.gt-card { background: #ffffff; padding: 50px 30px; border-radius: 12px; border: 1px solid #eaeaea; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; position: relative; overflow: hidden; }
.gt-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: #e60000; transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.gt-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.gt-card:hover::before { transform: scaleX(1); }
.gt-icon { font-size: 3rem; margin-bottom: 20px; color: #e60000; }
.gt-card h3 { font-size: 1.4rem; color: #111827; margin: 0 0 15px 0; font-weight: 800; }
.gt-card p { color: #6b7280; font-size: 1rem; margin: 0; }

/* --- Call to Action & Form Styles --- */
.gt-cta { background-color: #111827; color: #ffffff; padding: 100px 0; text-align: center; }
.gt-cta h2 { font-size: 2.5rem; margin: 0 0 20px 0; color: #ffffff; font-weight: 800; }
.gt-cta p { font-size: 1.1rem; margin: 0 auto 40px auto; color: #9ca3af; max-width: 700px; }

/* --- Updated Form Visual Box --- */
.gt-form { 
    background: #1f2937; /* Lighter slate grey to separate it from the background */
    padding: 50px; 
    border-radius: 16px; 
    border: 1px solid #374151; 
    text-align: left; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Premium Drop Shadow */
}
.gt-form-group { margin-bottom: 20px; }
.gt-form input, .gt-form select { 
    width: 100%; 
    padding: 16px; 
    border-radius: 8px; 
    border: 1px solid #4b5563; 
    background: #111827; /* Darker input fields for high contrast */
    color: #ffffff; 
    font-size: 1rem; 
    font-family: 'Inter', sans-serif; 
}
.gt-form input:focus, .gt-form select:focus { outline: none; border-color: #e60000; box-shadow: 0 0 0 3px rgba(230,0,0,0.2); }
.gt-form select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 15px center; background-size: 15px; }
.gt-location-group { display: flex; gap: 10px; }
.gt-location-group input { flex-grow: 1; }
.gt-btn-outline { background-color: transparent; border: 2px solid rgba(255,255,255,0.3); color: #ffffff; padding: 15px 25px; border-radius: 6px; cursor: pointer; transition: all 0.3s; white-space: nowrap; font-weight: bold; }
.gt-btn-outline:hover { background-color: rgba(255,255,255,0.1); border-color: #ffffff; transform: translateY(-2px); }
.gt-btn-whatsapp { width: 100%; background-color: #25D366; color: white; margin-top: 15px; font-size: 1.2rem; display: flex; justify-content: center; align-items: center; gap: 10px; border-radius: 8px; padding: 18px; }
.gt-btn-whatsapp:hover { background-color: #128C7E; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); transform: translateY(-2px); }

@media (max-width: 768px) {
    .gt-location-group { flex-direction: column; }
    .gt-btn-outline { width: 100%; }
    .gt-form { padding: 30px 20px; }
}

/* --- Footer Styles --- */
.gt-site-footer { background-color: #050505; color: #9ca3af; padding-top: 80px; }
.gt-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.gt-footer-col h4 { color: #ffffff; margin: 0 0 25px 0; font-size: 1.1rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.gt-footer-col p { margin: 0 0 12px 0; font-size: 0.95rem; }
.gt-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gt-footer-col ul li { margin-bottom: 12px; }
.gt-footer-col ul li a { color: #9ca3af; text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }
.gt-footer-col ul li a:hover { color: #ffffff; }
.gt-footer-bottom { background-color: #000000; padding: 25px 0; text-align: center; font-size: 0.9rem; border-top: 1px solid #1f2937; }
.gt-footer-bottom p { margin: 0; }

/* --- WP Admin Bar Fix --- */
.admin-bar .gt-site-header { top: 32px; }