/* Global Styles */
:root {
    /* Strict Palette */
    --primary-color: #FFD700;
    /* Yellow */
    --secondary-cyan: #00BCD4;
    /* Cyan */
    --secondary-magenta: #E91E63;
    /* Magenta */
    --bg-black: #000000;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-white: #ffffff;
    --text-gray: #dddddd;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(10px);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-magenta), var(--primary-color), var(--secondary-cyan));
    margin: 10px auto 0;
}

p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: var(--glass-blur);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 50px;
    width: auto;
    /* Ensure logo is visible on black */
    /* filter: brightness(0) invert(1); Removed to allow original logo colors */
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, var(--secondary-cyan), var(--primary-color), var(--secondary-magenta));
}

.nav-menu a:hover {
    color: var(--secondary-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('hero-bg.png');
    /* Abstract Creative Background */
    background-size: 150% 150%;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
    animation: abstract-flow 20s ease-in-out infinite alternate;
}

@keyframes abstract-flow {
    0% {
        background-position: 0% 50%;
        background-size: 150% 150%;
    }

    50% {
        background-size: 170% 170%;
    }

    100% {
        background-position: 100% 50%;
        background-size: 150% 150%;
    }
}

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

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-transform: none;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--secondary-cyan);
    padding-left: 1rem;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background: linear-gradient(90deg, var(--secondary-magenta), var(--secondary-cyan));
    border-color: transparent;
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}

/* Creative About/Values Section */
.about {
    background-color: var(--bg-black);
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.creative-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.creative-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Grid Placements */
.card-mission {
    grid-column: 1 / 7;
    border-top: 3px solid var(--primary-color);
}

.card-vision {
    grid-column: 7 / 13;
    border-top: 3px solid var(--secondary-cyan);
}

.card-history {
    grid-column: 1 / 13;
    background: linear-gradient(135deg, var(--bg-dark), #000);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    border-left: 5px solid var(--secondary-magenta);
}

.history-text {
    flex: 1;
    padding-right: 2rem;
}

.history-highlight {
    font-size: 5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary-magenta);
    opacity: 0.3;
}

/* Values Grid inside the section */
.values-container {
    grid-column: 1 / 13;
    margin-top: 2rem;
}

.values-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.value-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    flex: 1 1 300px;
    transition: var(--transition);
}

.value-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.value-item strong {
    color: var(--primary-color);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Services (Icons & Style) */
.services {
    background-color: var(--bg-dark);
}

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

.service-card {
    background: var(--bg-black);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--bg-card);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--secondary-cyan);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--secondary-cyan);
    background: rgba(0, 188, 212, 0.1);
    transform: scale(1.1);
}

.service-card:nth-child(2) .service-icon {
    color: var(--secondary-magenta);
}

.service-card:nth-child(2):hover .service-icon {
    color: var(--secondary-magenta);
    background: rgba(233, 30, 99, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact */
.contact {
    background-color: var(--bg-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    padding: 2rem;
    border-left: 2px solid var(--glass-border);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-links a {
    display: inline-block;
    border: 1px solid var(--text-white);
    padding: 10px 25px;
    margin-right: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: transparent;
}

.social-links a:nth-child(1):hover {
    background: var(--secondary-magenta);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.4);
}

.social-links a:nth-child(2):hover {
    background: var(--secondary-cyan);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
}

.map-container {
    /* filter: grayscale(100%) invert(90%); Removed to show color */
    /* Dark map style */
    border-radius: 0;
    overflow: hidden;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 83px;
    /* Header height */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 999;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInSlide 0.4s ease-out forwards;
}

/* Staggered animation */
.mobile-nav.active li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav.active li:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav.active li:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-nav.active li:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .creative-grid {
        display: flex;
        flex-direction: column;
    }

    .card-history {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .history-text {
        padding: 0;
        margin-bottom: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}