/* 
    KAT & JIYAAD OFFICIAL STYLESHEET
    Design: Cinematic, Luxury, Modern
    Colors: Black, White, Charcoal, Gold
*/

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --charcoal: #1a1a1a;
    --gold: #D4AF37;
    --gold-hover: #b8962e;
    --white: #ffffff;
    --gray-text: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .nav-links {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

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

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

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

.nav-cta {
    background: var(--gold);
    color: var(--primary-black) !important;
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: 800 !important;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

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

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-black);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- SECTIONS --- */
section {
    padding: 100px 10%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.section-title span {
    color: var(--gold);
}

/* --- SERVICE GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary-black);
    padding: 40px;
    border: 1px solid var(--charcoal);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--gold);
    background: #0f0f0f;
}

.service-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    nav { padding: 20px; }
    .nav-links { display: none; }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- BRAND WALL STYLING --- */
.brand-wall {
    background: #000;
    padding: 60px 10%;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}

.brand-lead {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 40px;
    font-weight: bold;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.6; /* Makes them look elegant */
    filter: grayscale(100%); /* Keeps it high-end */
}

.brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
}

/* --- AWARD BAR STYLING --- */
.award-bar {
    background: #D4AF37; /* The Gold Bar */
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    white-space: nowrap;
}

.award-pill {
    color: #000;
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .logo-container { justify-content: center; }
    .award-bar { flex-direction: column; align-items: center; gap: 10px; }
}
