/* --- GLASSMORPHISM PREMIUM CSS --- */

:root {
    --bg-dark: #0f172a; /* Deep modern blue/black */
    --gold: #d4af37;
    --gold-light: #fce78d;
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-light: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(16px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: transparent;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Blobs for Glass Effect */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(212, 175, 55, 0.15); /* Gold blob */
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.15); /* Blue blob */
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.1); /* Purple blob */
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

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

/* Glassmorphism Utilities */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.glass-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-white { color: white; text-decoration: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.p-0 { padding: 0 !important; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
.w-100 { width: 100%; }
.max-w-700 { max-width: 700px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: rgba(212, 175, 55, 0.8);
    color: #000;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
    background: rgba(212, 175, 55, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
    border-top: none;
    border-left: none;
    border-right: none;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
    font-weight: 300;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.hero-container {
    width: 100%;
}

.hero-content {
    max-width: 600px;
    padding: 40px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

/* Stats */
.stats {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--glass-border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-text {
    padding: 40px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    border-radius: 16px;
}

.feature-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Premium Campaign Section */
.campaign-premium-card {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    animation: premiumGlow 4s infinite alternate;
}

@keyframes premiumGlow {
    0% { box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.1); }
    100% { box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 50px rgba(212, 175, 55, 0.4); }
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.campaign-premium-card > * {
    position: relative;
    z-index: 1;
}

.premium-tag {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.3));
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-weight: 600;
    padding: 8px 24px;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.text-gold-glow {
    color: #fff;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    font-size: 3rem;
}

.campaign-subtitle {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.campaign-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.camp-box-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px 50px;
    min-width: 280px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.camp-box-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 100%);
    z-index: 0;
}

.camp-box-premium > * { position: relative; z-index: 1; }

.camp-box-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.3);
}

.camp-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1;
}

.camp-box-premium h3 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.camp-box-premium p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    font-size: 1.2rem;
    padding: 15px 40px;
}

@media (max-width: 768px) {
    .text-gold-glow { font-size: 2.2rem; }
    .campaign-premium-card { padding: 40px 20px; }
    .camp-box-premium { padding: 20px 30px; min-width: 100%; }
    .camp-box-premium h3 { font-size: 2.5rem; }
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}
.service-list li:last-child { border-bottom: none; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-item p {
    color: var(--text-muted);
}

.border-left {
    border-left: 1px solid var(--glass-border);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--glass-border); padding-bottom: 20px; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
    
    .about-content, .contact-grid { grid-template-columns: 1fr; }
    .border-left { border-left: none; border-top: 1px solid var(--glass-border); }
    
    .projects-grid, .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
    .hero { align-items: flex-end; padding-bottom: 80px; }
    .hero-title { font-size: 2.2rem; margin-bottom: 10px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.4; }
    .hero-content { 
        padding: 20px; 
        margin: 0 10px; 
        background: rgba(0, 0, 0, 0.4); 
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        box-shadow: none;
    }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .section-padding { padding: 60px 0; }
    .p-5 { padding: 1.5rem; }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    color: white;
}

.fab svg {
    width: 32px;
    height: 32px;
}

.fab-whatsapp {
    background: #25D366;
}

.fab-whatsapp:hover {
    background: #1ebe57;
}

.fab-call {
    background: var(--gold);
}

.fab-call:hover {
    background: var(--gold-light);
    color: #000;
}

.fab-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fab-instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #f09433 100%);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .fab {
        width: 50px;
        height: 50px;
    }
    .fab svg {
        width: 24px;
        height: 24px;
    }
}
