@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Base Colors */
    --primary: #ff0000; /* True Red */
    --primary-glow: rgba(255, 0, 0, 0.5);
    --secondary: #111111;
    --accent: #ff4d4d;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Light Mode (Default) */
    --bg: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --surface: #ffffff;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg: #000000;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --surface: #111111;
    --border: #222222;
    --glass: rgba(0, 0, 0, 0.9);
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

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

/* --- Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Glass Card */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* --- Navigation --- */
nav {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

[data-theme="dark"] nav {
    background: #000000;
}

.logo img {
    height: 72px; /* Increased 80% (from 40px) */
    width: auto;
    display: block;
    padding: 0; /* Removing any padding */
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

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

/* --- Theme Toggle --- */
.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
}

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

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

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

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

/* --- Sections --- */

/* Hero */
/* Hero */
.hero {
    min-height: calc(80vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('special.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.hero-content {
    text-align: left;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-style: italic;
}

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

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    position: relative;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.service-badge-img {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: auto;
    z-index: 10;
    transform: rotate(10deg);
    animation: pulse-badge 2s infinite;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

@keyframes pulse-badge {
    0% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.05); }
    100% { transform: rotate(15deg) scale(1); }
}


/* Map */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: var(--transition);
}

[data-theme="dark"] .map-container iframe {
    filter: grayscale(1) invert(1) brightness(0.7) contrast(1.2);
}

/* --- V-Card Specific Styles (New Layout) --- */
.vcard-body {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
}

.vcard-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vcard-profile-card {
    background: #121212;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #1a1a1a;
}

.vcard-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: #000;
    border: 2px solid #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcard-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.vcard-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
}

.vcard-subtitle {
    color: #888;
    font-size: 1rem;
    font-weight: 400;
}

.vcard-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vcard-action-btn {
    background: #121212;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    border: 1px solid #1a1a1a;
}

.vcard-action-btn:hover {
    background: #1a1a1a;
    transform: translateX(5px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-content i {
    font-size: 1.5rem;
    color: white;
    width: 30px;
    text-align: center;
}

.btn-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

.chevron {
    color: #444;
    font-size: 0.9rem;
}

.btn-save-contact {
    width: 100%;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-save-contact:hover {
    background: #cc0000;
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }


    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    section {
        padding: 50px 0;
    }
}
