﻿/* =========================================
   V CARE PREMIUM LIGHT THEME
   Font: Plus Jakarta Sans
========================================= */

:root {
    --bg-primary: #fff8f1;
    --bg-secondary: #F2F4F7;
    --bg-card: #FFFFFF;
    --text-primary: #1A1D20;
    --text-secondary: #5C6570;
    --accent-blue: #0F62FE; /* IBM/Apple style Tech Blue */
    --accent-blue-hover: #0043CE;
    --whatsapp-green: #25D366;
    --card-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    --card-border: 1px solid rgba(0, 0, 0, 0.04);
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Visually Hidden */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =========================================
   CINEMATIC VIDEO HERO
========================================= */
.video-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-heading {
    color: #FFFFFF;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtext {
    color: #E0E4E8;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
}

.btn-hero {
    background-color: var(--accent-blue);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 98, 254, 0.3);
}

@media (max-width: 768px) {
    .hero-heading { font-size: 48px; letter-spacing: -1px; }
    .hero-subtext { font-size: 18px; }
}

/* =========================================
   PAGE CONTENT & STICKY NAV
========================================= */
.page-content {
    position: relative;
    z-index: 20;
    background: var(--bg-primary);
    width: 100%;
}

.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 248, 241, 0.85); /* Frosty #fff8f1 */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.nav-logo { 
    height: 80px; 
    /* Remove invert so it displays standard dark version or leave native */
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

.nav-links a { 
    color: var(--text-primary); 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 600; 
    transition: color 0.2s; 
}

.nav-links a:hover { 
    color: var(--accent-blue); 
}

.btn-nav-wa {
    background: var(--whatsapp-green);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff !important;
}

.btn-nav-wa:hover { 
    filter: brightness(1.05); 
    transform: scale(1.03); 
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .sticky-nav { padding: 5px 20px; }
    .nav-links { gap: 15px; }
    .nav-links a:not(.btn-nav-wa) { display: none; }
}

/* =========================================
   LAYOUT GRIDS
========================================= */
.content-section {
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.content-section:nth-child(even) {
    background: var(--bg-secondary);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col-6040 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: stretch;
}

/* Typography Extensions */
.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-title.center { text-align: center; }

.section-subtitle {
    font-size: 22px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 30px;
}

.section-subtitle.center { text-align: center; }

.section-body {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

/* =========================================
   LIGHT PREMIUM CARDS
========================================= */
.glass-card {
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* About Us Image */
.about-visual {
    height: 600px;
    width: 100%;
    padding: 0;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(15, 98, 254, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
}

.card-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.feature-list li {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '\2713';
    color: var(--accent-blue);
    font-size: 24px;
    margin-right: 12px;
    line-height: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-wa {
    background: var(--whatsapp-green);
    color: #ffffff;
}

.btn-wa:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 8px 25px rgba(15, 98, 254, 0.2);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.wa-icon {
    margin-right: 10px;
    font-size: 22px;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-column {
    padding: 50px 30px;
    border-radius: 20px;
    background: var(--bg-card);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-stat {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.trust-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

/* Contact & Map */
.contact-block {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
}

.contact-block span {
    color: var(--text-secondary);
    display: inline-block;
    width: 90px;
    font-weight: 500;
}

.text-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover { text-decoration: underline; }

.directions-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 15px;
}

.map-card {
    height: 100%;
    min-height: 500px;
    padding: 0;
}

/* FAQ */
.faq-container { max-width: 900px; }

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 30px 0;
    cursor: pointer;
}

.faq-item:hover .faq-question span {
    color: var(--accent-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-question span { transition: color 0.3s; }

.faq-icon {
    font-size: 28px;
    color: var(--accent-blue);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-left: 4px solid var(--accent-blue);
    padding-left: 25px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
}

/* Footer Light Theme */
.site-footer {
    background: #0A0A0A; /* Deep dark for elite contrast at the end */
    padding-top: 80px;
    color: #FFFFFF;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 104px;
    margin-bottom: 25px;
    filter: invert(1);
}

.tagline {
    color: #A0AAB2;
    margin-bottom: 25px;
    font-size: 16px;
}

.social-links a.social-btn {
    display: inline-block;
    width: auto;
    padding: 0 20px;
    height: 38px;
    line-height: 36px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a.social-btn:hover {
    border-color: var(--accent-blue);
    background: var(--accent-blue);
}

.footer-head {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.q-links { list-style: none; padding: 0; margin: 0; }
.q-links li { margin-bottom: 15px; }
.q-links a {
    color: #A0AAB2;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 16px;
}
.q-links a:hover { color: #FFFFFF; }

.contact-col-foot p {
    color: #A0AAB2;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    color: #6C757D;
    font-size: 14px;
}

.bbc-txt { font-size: 12px; opacity: 0.8; margin-top: 8px; display: block; }

/* GSAP Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .section-title { font-size: 40px; }
    .two-col, .two-col-6040, .services-grid { gap: 40px; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .content-section { padding: 40px 0; }
    .section-title { font-size: 34px; }
    .two-col, .two-col-6040, .services-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
    .footer-cols { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 350px; }
    .btn-large { width: 100%; box-sizing: border-box; }
}


