@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=Outfit:wght@400;700;900&display=swap');

/* Global Variables - Light Mode Modern Gradients */
:root {
    --bg-color: #f8fafc;
    --surface-color: rgba(255, 255, 255, 0.7);
    --surface-border: rgba(0, 0, 0, 0.08);
    --primary-color: #ec4899; /* Vibrant Pink */
    --secondary-color: #8b5cf6; /* Vibrant Purple */
    --accent-color: #06b6d4; /* Vibrant Cyan */
    --primary-glow: rgba(236, 72, 153, 0.3);
    --text-color: #0f172a;
    --text-muted: #475569;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

ul {
    list-style: none;
}

/* Ambient Orbs - Light Mode Vibrant */
.background-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #ffb703; /* Vibrant Gold/Yellow to match logo and contrast with text */
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    top: 40%;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 100px) scale(1.2); }
    100% { transform: translate(-50px, 150px) scale(0.8); }
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--surface-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--surface-border);
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 10px 30px;
    z-index: 1000;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.08);
    top: 15px;
    padding: 8px 30px;
    border: 1px solid var(--surface-border);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-logo {
    max-height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-brand-logo:hover {
    transform: scale(1.05);
}

.footer-brand-logo {
    max-height: 100px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
    display: block;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(236, 72, 153, 0.1);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 6% 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    max-width: 800px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    min-height: 2.4em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-graphics {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface-border);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform-style: preserve-3d;
}

.floating-card i {
    font-size: 3rem;
    margin-bottom: 10px;
    transform: translateZ(50px);
}

.floating-card h4 {
    font-size: 1.2rem;
    transform: translateZ(30px);
    color: var(--text-color);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float-card 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 5%;
    background: rgba(255, 255, 255, 0.9);
    animation: float-card 8s ease-in-out infinite reverse;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation: float-card 7s ease-in-out infinite 1s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Typed Cursor */
.typed-cursor {
    color: var(--primary-color);
}

/* Marquee */
.marquee-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.marquee-content span {
    margin: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about {
    padding: 100px 6%;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(139, 92, 246, 0.05) 50%, var(--bg-color) 100%);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features li {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--surface-border);
    transition: transform 0.4s ease;
    background: #fff;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 600;
}

/* Services */
.services {
    padding: 120px 6%;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--surface-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover .icon-wrapper {
    background: #fff;
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.service-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.advanced-icon {
    font-size: 4rem !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(20px);
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    transform: translateZ(10px);
}

/* Gallery Section */
.gallery {
    padding: 100px 6%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--surface-border);
    transition: var(--transition);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.upload-prompt {
    text-align: center;
    color: var(--text-muted);
}

.upload-prompt i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-muted);
    opacity: 0.5;
}

.upload-prompt p {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact */
.contact {
    padding: 100px 6% 150px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    overflow: hidden;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info {
    flex: 1;
    min-width: 350px;
    padding: 4rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info .tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--surface-border);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item:hover .icon-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.info-item:hover .icon-circle i {
    color: #fff;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.info-item p, .info-item a {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-color);
    font-weight: 600;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-map {
    flex: 1;
    min-width: 350px;
    min-height: 500px;
}

/* CTA Banner */
.cta-banner {
    padding: 50px 6% 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-content {
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.cta-content .btn {
    font-size: 1.3rem;
    padding: 15px 40px;
}

/* Footer */
footer {
    background: #ffffff;
    padding: 5rem 6% 2rem;
    margin: 0 4% 4% 4%;
    border-radius: 40px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.08);
    position: relative;
    max-width: 1400px;
}
@media (min-width: 1500px) {
    footer {
        margin: 0 auto 4% auto;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.brand-col p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: translateY(-3px);
}

.links-col ul, .contact-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links-col a {
    color: var(--text-muted);
    font-weight: 500;
}

.links-col a:hover {
    color: var(--primary-color);
}

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.contact-col i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-tooltip 2s infinite;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #25d366;
}

.local-brand {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #94a3b8;
    margin: 0 3rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-tooltip {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
    100% { transform: translateY(-50%) scale(1); }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container { flex-direction: column; text-align: center; }
    .about-features li { justify-content: center; }
    
    .hero-content h1 { font-size: 3.5rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-graphics { display: none; }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 10px;
        padding: 10px 20px;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: -120%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid var(--surface-border);
        padding: 2rem 0;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .nav-links.active { left: 0; }
    .hamburger { display: block; color: var(--text-color); }
    .nav-cta { display: none !important; }
    
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    
    .contact-info { padding: 2rem; }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    footer {
        margin: 0 2% 2% 2%;
        border-radius: 30px;
        padding: 4rem 6% 2rem;
    }
}
