/* --- Core Variables & Reset --- */
:root {
    --color-primary-blue: #004AAD; /* Deep Royal Blue */
    --color-accent-sky: #6FB1FC;
    --color-bg-dark: #0E0E0E; /* Charcoal Gray */
    --color-bg-light: #F7F9FC; /* Off-White */
    --color-text-dark: #1A1A1A;
    --color-text-light: #F7F9FC;
    --font-heading: 'Montserrat', sans-serif; /* New Heading Font */
    --font-body: 'Open Sans', sans-serif; /* New Body Font */
    --spacing-section: 120px;
    --spacing-md: 40px;
    --transition-speed: 0.4s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Base Color Classes */
.dark-bg {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.light-bg {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

a {
    text-decoration: none;
    color: var(--color-primary-blue);
    transition: color var(--transition-speed);
}

/* Typography & Layout */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

.accent-blue {
    color: var(--color-primary-blue);
}
.accent-blue-light {
    color: var(--color-accent-sky);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-section) 30px;
}

.section-badge {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800; /* Extra weight for Montserrat headings */
}

.center {
    text-align: center;
}

.sub-text {
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

/* --- Buttons & Links --- */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid;
    font-size: 0.95rem;
}

.primary-cta {
    background-color: var(--color-primary-blue);
    color: var(--color-text-light);
    border-color: var(--color-primary-blue);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.4);
}

.primary-cta:hover {
    background-color: var(--color-accent-sky);
    border-color: var(--color-accent-sky);
    box-shadow: 0 8px 20px rgba(111, 177, 252, 0.6);
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: transparent;
    color: var(--color-accent-sky);
    border-color: var(--color-accent-sky);
    margin-left: 20px;
}

.secondary-cta:hover {
    background-color: var(--color-accent-sky);
    color: var(--color-bg-dark);
}

/* --- 0. Header (White) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: var(--color-bg-light); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary-blue);
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
}

.logo-img {
    height: 65px;
    width: auto;
    margin-right: 10px;
}

.nav a {
    margin-left: 25px;
    font-weight: 500;
    color: var(--color-text-dark); 
    position: relative;
    padding-bottom: 5px;
}

.nav a:hover {
    color: var(--color-primary-blue);
}

.cta-nav {
    border: 1px solid var(--color-primary-blue);
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 25px;
    color: var(--color-primary-blue);
    /* Adding a transition here is crucial for the effect */
    transition: all 0.3s ease; 
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
}

/* Mobile Nav Overlay */
.nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    padding-top: 100px;
    align-items: center;
    justify-content: flex-start;
    z-index: 999;
}
.nav.active a {
    color: var(--color-text-light);
    margin: 15px 0;
    font-size: 1.5rem;
}
.nav.active .cta-nav {
    margin-top: 20px;
    border-color: var(--color-accent-sky);
    color: var(--color-accent-sky);
}
.nav.active .cta-nav:hover {
    background-color: var(--color-accent-sky);
    color: var(--color-bg-dark);
}

/* --- 1. Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* High-quality tech-luxury image placeholder */
    background: linear-gradient(rgba(0, 0, 0, 0.6), var(--color-bg-dark) 100%), 
                url('https://images.unsplash.com/photo-1605379399642-870262d3d051?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fHdlYiUyMGRldmVsb3BtZW50fGVufDB8fDB8fHww&auto=format&fit=crop&q=60&w=500') center center/cover;
    opacity: 0.9;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 1000px;
    padding: 0 30px;
}

.hero-headline {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.trust-bar {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 4px;
}
.trust-bar i {
    margin-right: 8px;
    color: var(--color-accent-sky);
}

/* Scroll Cue Animation */
.scroll-cue {
    position: absolute;
    bottom: 30px;
    color: var(--color-accent-sky);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- 2. About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

.about-text .section-title {
    font-size: 2.5rem;
}

.about-text p {
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.button-text-link {
    font-weight: 600;
    color: var(--color-primary-blue);
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--color-primary-blue);
}
.button-text-link:hover {
    color: var(--color-accent-sky);
    border-bottom-color: var(--color-accent-sky);
}

.about-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: var(--spacing-md);
}

.icon-block {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0, 74, 173, 0.1);
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-block:hover {
    border-color: var(--color-primary-blue);
    box-shadow: 0 6px 15px rgba(0, 74, 173, 0.15);
    transform: translateY(-3px);
}

.icon-block i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.icon-block h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

/* --- 3. What We Build (Recent Projects) --- */
.works-section .section-title {
    color: var(--color-text-light);
}
.works-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-md);
}

.work-project-card {
    background-color: #1A1A1A; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.work-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Project Image Placeholders */
.img-model { background-image: url('assets/MICHAEL\ MAZI.png'); }
.img-boutique { background-image: url('assets/ROLLAND\ ORIGINAL.png'); }
.img-car { background-image: url('assets/SARKIN\ MOTA\ AUTOS.png'); }
.img-video { background-image: url('placeholder-videographer.jpg'); }

.project-details {
    padding: 20px;
}

.project-details h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--color-accent-sky);
}

.project-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.project-link {
    color: #00B8FF; /* Bright blue for links */
    font-weight: 600;
    display: inline-block;
}
.project-link:hover {
    color: var(--color-accent-sky);
}

.project-link i {
    font-size: 0.9rem;
    margin-left: 5px;
}

/* --- 4. Our Process --- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: var(--spacing-md);
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary-blue), var(--color-accent-sky));
}

.process-step h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

/* --- 5. Testimonials Section --- */
.testimonials-section {
    padding: var(--spacing-section) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--color-primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.client-info {
    font-size: 0.9rem;
}
.client-info i {
    font-size: 0.8rem;
    margin-right: 2px;
}

/* --- 6. FAQ Section --- */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: background-color 0.3s;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: var(--color-primary-blue);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '-';
    transform: rotate(360deg);
}

.faq-item p {
    padding: 0 20px 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-text-dark);
}

/* --- 7. Contact Section --- */
.contact-section {
    padding-top: 0;
    padding-bottom: var(--spacing-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #1A1A1A; 
    border-radius: 8px;
    padding: var(--spacing-md);
}

.form-wrapper {
    padding: 20px;
}
.form-wrapper .section-badge {
    color: var(--color-accent-sky);
    margin-bottom: 30px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-radius: 4px;
    font-family: var(--font-body);
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.appointment-form select {
    color: rgba(255, 255, 255, 0.7);
}

.appointment-form .submit-btn {
    background-color: #00B8FF; 
    border-color: #00B8FF;
    color: var(--color-bg-dark);
}
.appointment-form .submit-btn:hover {
    background-color: #00D2FF;
    box-shadow: 0 8px 20px rgba(0, 184, 255, 0.6);
}

.contact-info-panel {
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.value-prop-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.value-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.value-point i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}
.value-point p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-accent-sky);
}
.contact-details p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}
.contact-details a {
    color: rgba(255, 255, 255, 0.7);
}
.contact-details a:hover {
    color: var(--color-accent-sky);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; 
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- 8. Footer --- */
.footer {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-logo-desc {
    max-width: 300px;
}
.footer-logo-desc .logo {
    color: var(--color-primary-blue);
    margin-bottom: 15px;
}
.footer-logo-desc p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links-group {
    margin-right: 40px;
}

.footer-links-group h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--color-text-light);
}

.footer-links-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-links-group a:hover {
    color: var(--color-accent-sky);
}

.footer-social-section {
    align-self: flex-start;
}
.footer-social a {
    font-size: 1.8rem;
    margin-left: 15px;
    color: #00B8FF; 
    transition: color 0.3s;
}
.footer-social a:hover {
    color: var(--color-accent-sky);
}

.copyright-bar {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .header .nav { display: none; }
    .menu-toggle { display: block; }
    .hero-headline { font-size: 3.5rem; }
    .trust-bar { flex-direction: column; gap: 10px; padding: 15px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-icons { grid-template-columns: 1fr 1fr; margin-top: var(--spacing-md); padding-left: 0; }
    .works-grid-simple { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .process-timeline { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-panel { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 30px; padding-top: 30px; }
    
    .footer-content { flex-wrap: wrap; justify-content: space-between; }
    .footer-logo-desc { width: 100%; margin-bottom: 30px; }
    .footer-links-group, .footer-social-section { width: 45%; margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .hero-headline { font-size: 2.5rem; }
    .section-title, .cta-headline { font-size: 2rem; }
    .hero-subtext { font-size: 1.1rem; }
    .hero-cta-group { display: flex; flex-direction: column; }
    .secondary-cta { margin-left: 0; margin-top: 15px; }
    .about-icons, .works-grid-simple { grid-template-columns: 1fr; }
    .content-container { padding: 80px 20px; }
    .footer-links-group, .footer-social-section { width: 100%; text-align: center; margin-right: 0; }
    .footer-social { margin-top: 10px; }
    .footer-links-group a { text-align: center; }
}