/* ===== CSS Variables & Reset ===== */
:root {
    --primary-color: #d3d93b;
    --primary-dark: #b8be2f;
    --primary-light: #e4e86f;
    --dark-bg: #f5f7fa;
    /* Changed to Light Gray */
    --dark-card: #ffffff;
    /* Changed to White */
    --dark-card-hover: #ffffff;
    --text-primary: #1a1a1a;
    /* Changed to Dark Gray */
    --text-secondary: #5e6d82;
    /* Changed to Muted Gray */
    --gradient-1: linear-gradient(135deg, #d3d93b 0%, #a8ad2c 100%);
    --gradient-2: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    /* Light Gradient */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(211, 217, 59, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* ===== Background Elements ===== */
.cabnero-bg-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(211, 217, 59, 0.15) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.cabnero-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== Main Card Container ===== */
.cabnero-card-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.cabnero-card {
    background: white;
    border-radius: 32px;
    padding: 48px 32px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabnero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.cabnero-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {

    0%,
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ===== Logo Section ===== */
.cabnero-logo-section {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.cabnero-logo {
    max-width: 200px;
    width: 200px;
    height: auto;

    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    display: inline-block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cabnero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(211, 217, 59, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ===== Tagline ===== */
.cabnero-tagline {
    text-align: center;
    margin-bottom: 40px;
}

.cabnero-tagline h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #454545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

.cabnero-tagline p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ===== Action Buttons ===== */
.cabnero-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cabnero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    min-height: 56px;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cabnero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
    pointer-events: none;
}

.cabnero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cabnero-btn i {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.cabnero-btn span {
    position: relative;
    z-index: 2;
}

/* Primary Button - Download Brochure */
.cabnero-btn-primary {
    background: var(--gradient-1);
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(211, 217, 59, 0.4);
}

.cabnero-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(211, 217, 59, 0.6);
}

.cabnero-btn-primary:active {
    transform: scale(0.98);
}

.cabnero-btn:active {
    transform: scale(0.98);
}

/* Secondary Button - Save Contact */
/* Secondary Button - Save Contact */
.cabnero-btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.cabnero-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(211, 217, 59, 0.3);
}

/* Accent Button - Visit Website */
.cabnero-btn-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.cabnero-btn-accent:hover {
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.6);
}

/* Pay Button */
.cabnero-btn-pay {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(245, 87, 108, 0.4);
}

.cabnero-btn-pay:hover {
    box-shadow: 0 6px 24px rgba(245, 87, 108, 0.6);
}

.cabnero-btn-pay:active {
    transform: scale(0.98);
}

/* ===== Contact Info ===== */
.cabnero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cabnero-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cabnero-contact-item:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.cabnero-contact-item i {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.cabnero-contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.cabnero-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatBounce 2s ease-in-out infinite;
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

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

.cabnero-float-btn i {
    font-size: 28px;
}

.cabnero-phone-btn {
    background: var(--gradient-1);
    color: #1a1a1a;
}

.cabnero-phone-btn:hover {
    box-shadow: 0 8px 32px rgba(211, 217, 59, 0.6);
}

.cabnero-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.cabnero-whatsapp-btn:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* ===== Notification Styles ===== */
.cabnero-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
    pointer-events: none;
}

.cabnero-notification-show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cabnero-notification i {
    font-size: 20px;
    flex-shrink: 0;
}

.cabnero-notification span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.cabnero-notification-success {
    border-left: 4px solid var(--primary-color);
}

.cabnero-notification-success i {
    color: var(--primary-color);
}

.cabnero-notification-info {
    border-left: 4px solid #667eea;
}

.cabnero-notification-info i {
    color: #667eea;
}

/* ===== Responsive Design ===== */
@media (max-width: 640px) {
    body {
        padding: 16px;
    }

    .cabnero-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .cabnero-logo {
        max-width: 160px;
        width: 160px;
    }

    .cabnero-tagline h1 {
        font-size: 24px;
    }

    .cabnero-tagline p {
        font-size: 14px;
    }

    .cabnero-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .cabnero-btn i {
        font-size: 16px;
    }

    .cabnero-contact-item {
        padding: 10px;
    }

    .cabnero-contact-item a {
        font-size: 14px;
    }

    .cabnero-floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }

    .cabnero-float-btn {
        width: 56px;
        height: 56px;
    }

    .cabnero-float-btn i {
        font-size: 24px;
    }

    .cabnero-notification {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 14px 20px;
    }
}

@media (max-width: 380px) {
    .cabnero-card {
        padding: 24px 16px;
    }

    .cabnero-logo {
        max-width: 140px;
        width: 140px;
    }

    .cabnero-tagline h1 {
        font-size: 20px;
    }

    .cabnero-btn {
        padding: 12px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .cabnero-float-btn {
        width: 50px;
        height: 50px;
    }

    .cabnero-float-btn i {
        font-size: 22px;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    body {
        background: white;
    }

    .cabnero-bg-gradient,
    .cabnero-bg-pattern,
    .cabnero-floating-buttons,
    .cabnero-card-shine {
        display: none;
    }

    .cabnero-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}