/* Layout & Components */
@import 'variables.css';

/* --- Conversion Elements --- */

/* Glassmorphism Form */
.glass-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: white;
}

/* Hidden SEO Text */
.seo-hidden {
    color: white;
    font-size: 1px;
    opacity: 0.1;
    position: absolute;
    z-index: -1;
    height: 1px;
    overflow: hidden;
}

/* Floating Action Buttons (FAB) - Redesigned */
.floating-actions {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

/* Phone Button - Bottom Left */
.floating-left {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 1.8rem;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
}

/* WhatsApp Button - Bottom Right */
.floating-right {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 1.8rem;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}

@media (min-width: 768px) {

    .floating-left,
    .floating-right {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Animation for "Pulse" attention grabber */
@keyframes pulse-attention {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse-attention 2s infinite;
}


/* Header */
.header {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--color-accent);
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--color-accent);
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 1rem;
    }

    .mobile-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--color-surface), var(--color-bg));
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.6s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: var(--spacing-lg) 0;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background-color var(--transition-fast);
}

.btn:hover {
    background-color: var(--color-accent-hover);
}

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

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

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

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

/* Cities List (Condensed) */
.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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