/* Custom styling for VLAC Template - Light Theme Edition */
:root {
    --primary-color: #440099;
    --secondary-color: #A7A4E0;
    --dark-neutral: #222222;
    --light-neutral: #F4F4F6;
    --bg-color: #FFFFFF;
    --text-color: #111111;
    --card-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.08);
    --glow-shadow: 0 10px 30px rgba(68, 0, 153, 0.06);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utilities */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(68, 0, 153, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(135deg, #000000 60%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-wrapper img {
    height: 40px;
    object-fit: contain;
}

.logo-wrapper span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111111;
    opacity: 0.8;
}

nav ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 45%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

.hero p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 60%, rgba(255, 255, 255, 0.7) 100%);
    }
    header nav {
        display: none;
    }
}

/* Facts Section */
.facts-banner {
    background: #fbf9ff;
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.fact-label {
    font-size: 0.9rem;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: #ffffff;
    color: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(68, 0, 153, 0.08);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
}

.service-divider {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.service-desc {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 25px;
}

.service-bullets {
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-bullets li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444444;
}

.service-bullets li i {
    color: var(--primary-color);
}

.btn-service-link {
    background: transparent;
    color: var(--primary-color);
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* About Us & Allies Section */
.about-section {
    background: #fbf9ff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    color: #111111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
}

.about-left p {
    color: #444444;
    font-size: 1.05rem;
    font-weight: 400;
}

.allies-wrapper {
    margin-top: 30px;
}

.allies-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.allies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.ally-logo-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.ally-logo-box:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(68, 0, 153, 0.1);
}

.ally-logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .about-right {
        grid-template-columns: 1fr;
    }
}

.feature-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(68, 0, 153, 0.06);
}

.feat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feat-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.feat-desc {
    font-size: 0.85rem;
    color: #555555;
}

/* Gallery Section */
.gallery-section {
    background: #ffffff;
    color: #111111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-btn-wrapper {
    text-align: center;
}

/* Clients Section */
.clients-section {
    background: #fbf9ff;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
}

.clients-title {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555555;
    margin-bottom: 40px;
    font-weight: 650;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo-box {
    max-height: 50px;
    opacity: 0.75;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box:hover {
    opacity: 1;
    transform: scale(1.1);
}

.client-logo-box img {
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(100%) contrast(150%);
}

.client-logo-box:hover img {
    filter: none;
}

/* CTA Section */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #150030 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 60%);
    opacity: 0.15;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
}

/* Footer */
footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    color: #555555;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-desc {
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f4f4f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(68, 0, 153, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #888888;
}

/* Legal Page Styling */
.legal-container {
    max-width: 800px;
    margin: 120px auto 80px auto;
    padding: 0 20px;
    color: #111111;
}
.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}
.legal-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.8;
}

/* Gallery Page Styling */
.gallery-page-container {
    max-width: 1200px;
    margin: 120px auto 80px auto;
    padding: 0 20px;
    color: #111111;
}
.gallery-page-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: #000000;
}
.gallery-page-container p {
    text-align: center;
    color: #666666;
    margin-bottom: 40px;
}
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}
.btn-back-home:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}
