/*
 Theme Name:   Kaylano Child
 Template:     twentytwentyone
 Description:  Tema Company Profile PT Kaylano Queen Gemilang
 Author:       Tim IT Kaylano
 Version:      1.0.0
*/

:root {
    --primary-color: #1a202c; /* Dark Navy - Profesional */
    --accent-color: #d4af37; /* Gold - Sesuai nama 'Queen/Gemilang' */
    --text-light: #f7fafc;
    --text-dark: #2d3748;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/1600x900/?technology,code');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--accent-color); }
.hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto; }

/* Sections General */
.section { padding: 80px 20px; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 2px; }
.bg-light { background-color: #f8f9fa; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-10px); }
.service-card h3 { color: var(--primary-color); margin-bottom: 15px; }

/* Why Us */
.features-list { list-style: none; padding: 0; font-size: 1.1rem; }
.features-list li { margin-bottom: 15px; }
.features-list li::before { content: "✓"; color: var(--accent-color); margin-right: 10px; font-weight: bold; }

/* Footer */
footer { background: var(--primary-color); color: white; padding: 50px 20px; text-align: center; }