/**
 * Quinnus Landing Page Styles
 * Modern, responsive design for pharmacy management system
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-color: #0049C6;
    --primary-dark: #003699;
    --primary-light: #458FFF;
    --secondary-color: #219653;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --text-gray: #7C88A0;
    --bg-light: #f8faff;
    --bg-section: #EBF5FF;
    --bg-sky-light: rgb(251, 252, 255);
    --bg-sky-dark: rgb(248, 250, 254);
    --shadow-color: rgba(0, 73, 198, 0.1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Legacy Color Classes (Preserved for compatibility)
   ========================================================================== */
.bg-banner {
    background-color: var(--bg-section);
}

.btn-color {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-color:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 73, 198, 0.3);
}

.bg-footer {
    background-color: #E5EEFB;
}

.text-gray {
    color: var(--text-gray);
}

.shadow-sky {
    box-shadow: 0 10px 40px rgba(0, 73, 198, 0.08) !important;
}

.bg-sky-light {
    background-color: var(--bg-sky-light);
}

.text-main-color {
    color: var(--primary-color);
}

.bg-main-color {
    background-color: var(--primary-color);
}

.text-green-color {
    color: var(--secondary-color);
}

.bg-green-color {
    background-color: var(--secondary-color);
}

.bg-sky-color {
    background-color: var(--primary-light);
}

.bg-blue-color {
    background-color: #023D93;
}

.bg-sky-dark {
    background-color: var(--bg-sky-dark);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-landing {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-landing.scrolled {
    box-shadow: 0 2px 20px var(--shadow-color);
    padding: 0.5rem 0;
}

.navbar-landing .navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-landing .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-landing .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-landing .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-landing .nav-link:hover::after {
    width: 60%;
}

.navbar-landing .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 73, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 73, 198, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   Main Content Wrapper
   ========================================================================== */
.landing-main {
    padding-top: 100px;
    /* Account for fixed navbar */
}

.landing-main>.hero-section {
    margin-top: -100px;
    /* Hero section handles its own padding */
    padding-top: 140px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #dbeafe 100%);
}

/* Abstract Pill/Tablet Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Pill shapes (elongated rounded rectangles) */
.pill {
    position: absolute;
    border-radius: 100px;
    opacity: 0.08;
}

.pill-1 {
    width: 200px;
    height: 80px;
    background: linear-gradient(90deg, var(--primary-color) 50%, #60a5fa 50%);
    top: 15%;
    right: 8%;
    transform: rotate(-25deg);
    animation: floatSlow 20s ease-in-out infinite;
}

.pill-2 {
    width: 140px;
    height: 56px;
    background: linear-gradient(90deg, #10b981 50%, #34d399 50%);
    bottom: 25%;
    left: 5%;
    transform: rotate(15deg);
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.pill-3 {
    width: 100px;
    height: 40px;
    background: linear-gradient(90deg, #f59e0b 50%, #fbbf24 50%);
    top: 60%;
    right: 15%;
    transform: rotate(35deg);
    animation: floatSlow 18s ease-in-out infinite;
    animation-delay: -5s;
}

/* Tablet shapes (round circles) */
.tablet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.tablet-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, #93c5fd, var(--primary-color));
    top: 10%;
    left: 10%;
    animation: floatSlow 22s ease-in-out infinite;
    animation-delay: -3s;
}

.tablet-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #a7f3d0, #10b981);
    bottom: 15%;
    right: 10%;
    animation: floatSlow 28s ease-in-out infinite reverse;
}

.tablet-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b);
    top: 40%;
    left: 3%;
    animation: floatSlow 24s ease-in-out infinite;
    animation-delay: -8s;
}

/* Capsule shapes (elongated with rounded ends) */
.capsule {
    position: absolute;
    border-radius: 50px;
    opacity: 0.05;
}

.capsule-1 {
    width: 160px;
    height: 50px;
    background: linear-gradient(90deg, #818cf8 50%, #c4b5fd 50%);
    top: 75%;
    left: 20%;
    transform: rotate(-10deg);
    animation: floatSlow 26s ease-in-out infinite;
    animation-delay: -10s;
}

.capsule-2 {
    width: 120px;
    height: 38px;
    background: linear-gradient(90deg, #fb7185 50%, #fda4af 50%);
    top: 20%;
    right: 25%;
    transform: rotate(20deg);
    animation: floatSlow 21s ease-in-out infinite reverse;
    animation-delay: -2s;
}

@keyframes floatSlow {

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

    50% {
        transform: translateY(-30px) rotate(calc(var(--rotate, 0deg) + 5deg));
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-content.text-center .hero-features {
    justify-content: center;
}

.hero-content.text-center .hero-buttons {
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 73, 198, 0.1), rgba(59, 130, 246, 0.08));
    color: var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
    border: 1px solid rgba(0, 73, 198, 0.1);
}

.hero-badge i {
    animation: pulse 2s infinite;
    color: #f59e0b;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-buttons .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.hero-buttons .btn-primary-custom {
    box-shadow: 0 8px 24px rgba(0, 73, 198, 0.25);
}

.hero-buttons .btn-primary-custom:hover {
    box-shadow: 0 12px 32px rgba(0, 73, 198, 0.35);
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: white;
    color: var(--text-dark);
    padding: 0.625rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 73, 198, 0.06);
    border: 1px solid rgba(0, 73, 198, 0.08);
}

.hero-feature-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 73, 198, 0.12);
    transform: translateY(-2px);
}

.feature-icon-small {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 73, 198, 0.1), rgba(59, 130, 246, 0.08));
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.75rem;
}

.hero-feature-item .feature-text {
    color: var(--text-dark);
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 1.25rem;
    border-radius: 14px;
    box-shadow:
        0 4px 12px rgba(0, 73, 198, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 73, 198, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.06);
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 10px;
    font-size: 1rem;
}

.hero-stat-icon.success {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.hero-stat-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 73, 198, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(0, 73, 198, 0.15);
    transform: translateY(-2px);
}

.hero-feature-item i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

/* Legacy Hero (bn-1) - kept for compatibility but enhanced */
.bn-1-size {
    width: 100%;
    height: 700px;
    position: relative;
}

.bn-1 {
    background-image: url("/images/bn-1.jpg");
    background-size: cover;
    background-position: center right;
    width: 100%;
    height: 100%;
}

.bn-1-size::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #FFF 35%, rgba(255, 255, 255, 0.8) 50%, rgba(20, 20, 255, 0) 75%);
    z-index: 1;
}

.cover-text {
    padding-left: 12%;
}

.text-header {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.text-sub-header {
    font-size: clamp(1rem, 2vw, 1.375rem);
}

.text-sub-header2 {
    font-size: clamp(1rem, 3vw, 2rem);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 73, 198, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 73, 198, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 73, 198, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(0, 73, 198, 0.15), rgba(0, 73, 198, 0.05));
    color: var(--primary-color);
}

.feature-icon.success {
    background: linear-gradient(135deg, rgba(33, 150, 83, 0.15), rgba(33, 150, 83, 0.05));
    color: var(--secondary-color);
}

.feature-icon.warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    color: #f59e0b;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section {
    padding: 5rem 0;
}

.content-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 73, 198, 0.15);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.03);
}

.content-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 73, 198, 0.05), transparent);
    pointer-events: none;
}

.content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.content-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.content-list li i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 32px;
    padding: 4rem;
    overflow: hidden;
    margin: 3rem 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 0;
    position: relative;
}

.cta-banner .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.cta-banner .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Devices / Multi-device Section */
.bn-section-3 {
    background-image: url("/images/pic1.jpg");
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    position: relative;
}

.bn-section-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 73, 198, 0.85);
    border-radius: 24px;
}

.bn-section-3>* {
    position: relative;
    z-index: 1;
}

.devices-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.devices-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.devices-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.devices-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.devices-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.device-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.device-icon i {
    font-size: 2rem;
}

.device-icon span {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.device-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.devices-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.devices-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #f8faff 0%, #EBF5FF 100%);
    padding: 4rem 0 0;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 45px;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

.social-icon.line {
    background: #06c755;
}

.social-icon.line:hover {
    background: #05a847;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    background: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 73, 198, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    text-align: center;
}

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero-section {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-decorations .pill,
    .hero-decorations .tablet,
    .hero-decorations .capsule {
        opacity: 0.04;
        transform: scale(0.6);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-feature-item {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .feature-icon-small {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .hero-stats {
        gap: 1rem;
        justify-content: center;
    }

    .hero-stat-card {
        padding: 0.75rem 1rem;
    }

    .hero-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .hero-stat-number {
        font-size: 1rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .content-image {
        margin-bottom: 2rem;
    }

    .cta-banner {
        padding: 3rem 2rem;
        text-align: center;
    }

    .bn-1-size {
        height: 500px;
    }

    .bn-1 {
        background-position: center;
    }

    .bn-1-size::before {
        background: linear-gradient(90deg, #FFF 50%, rgba(255, 255, 255, 0.7) 70%, rgba(20, 20, 255, 0) 100%);
    }

    .cover-text {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 4rem 0;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-stat-card {
        width: 100%;
        max-width: 280px;
    }

    .devices-icons {
        gap: 1rem;
    }

    .device-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-banner {
        border-radius: 20px;
    }

    .bn-1-size {
        height: 400px;
    }

    .text-header {
        font-size: 1.75rem;
    }

    .text-sub-header {
        font-size: 1rem;
    }

    .text-sub-header2 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .bn-1-size {
        height: 350px;
    }

    .cover-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .text-header {
        font-size: 1.5rem;
    }
}