/* ==========================================
   pensepeti.com Design System & Stylesheet
   ========================================== */

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-glow: rgba(249, 115, 22, 0.25);
    --whatsapp-color: #25d366;
    --whatsapp-hover: #1ebd59;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--whatsapp-color);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

.btn-whatsapp-sm {
    background-color: var(--whatsapp-color);
    color: var(--text-white);
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-sm:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--primary);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-info i {
    color: var(--accent);
    margin-right: 6px;
}

.top-contacts {
    display: flex;
    gap: 20px;
}

.top-contacts a {
    color: #94a3b8;
}

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

.top-contacts i {
    margin-right: 5px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
}

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

.main-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff7ed;
    color: var(--accent);
    border: 1px solid #ffedd5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    color: var(--text-white);
    padding: 90px 0 110px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-coming-soon {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.status-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.status-box i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 3px;
}

.status-box strong {
    display: block;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 3px;
}

.status-box p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

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

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.glass-header i {
    font-size: 2rem;
    color: var(--accent);
}

.glass-header h3 {
    color: var(--text-white);
    font-size: 1.4rem;
}

.glass-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 24px;

}

.glass-desc strong {
    color: var(--text-white);
}

.glass-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.glass-list i {
    color: #22c55e;
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.4);
}

.highlight-card {
    border: 2px solid var(--accent);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.product-icon {
    width: 65px;
    height: 65px;
    background: #fff7ed;
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--accent);
    color: var(--text-white);
}

.product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-link {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-link:hover {
    gap: 12px;
    color: var(--accent-hover);
}

/* Features Section */
.features-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-info-side p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(6px);
    border-color: var(--accent);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: #fff7ed;
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.c-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.c-text a, .c-text p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    margin: 2px 0 0 0;
    display: block;
}

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

/* Quick Form Card */
.quick-form-card {
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.quick-form-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-form-card h3 i {
    color: var(--whatsapp-color);
}

.quick-form-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.wa-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wa-btn-option {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.wa-btn-option:hover {
    background: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: wa-bounce 2.5s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.floating-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes wa-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Footer */
.footer {
    background-color: #0b1120;
    color: #94a3b8;
    padding: 50px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.15));
}

.company-name {
    color: #e2e8f0;
    font-size: 0.95rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 4px;
}

.footer-info {
    text-align: right;
    font-size: 0.9rem;
}

.footer-sub {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }
}
