:root {
    --primary: #2d6a4f; /* Forest Green */
    --primary-light: #40916c;
    --secondary: #1b4332;
    --accent: #d8f3dc;
    --text: #081c15;
    --text-light: #52b788;
    --bg: #f8fdfa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.navbar .btn-primary {
    background-color: #ffbd2e; /* Bright Gold/Yellow */
    color: #1b4332; /* Dark Green Text */
    box-shadow: 0 4px 15px rgba(255, 189, 46, 0.3);
}

.navbar .btn-primary:hover {
    background-color: #ffc952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 189, 46, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.6); /* Darker glass for light text */
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
}

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

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-btns .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-btns .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Sections General */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

/* Vision */
.vision {
    background: var(--white);
}

.vision-text {
    font-size: 1.8rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--primary);
    font-weight: 400;
    font-style: italic;
}

/* Potential */
.potential {
    background-color: var(--bg);
}

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

.potential-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--accent);
    transition: var(--transition);
}

.potential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.potential-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.potential-card .icon {
    font-size: 1.5rem;
}

.potential-card ul {
    padding-left: 1rem;
}

.potential-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

.potential-card li strong {
    color: var(--text);
    font-weight: 600;
}

/* Pillars */
.pillars {
    background: var(--accent);
}

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

.pillar-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.pillar-card .icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.pillar-card p {
    flex-grow: 1; /* Pushes the button to the bottom */
    margin-bottom: 2rem;
    color: #555;
    font-size: 0.95rem;
}

.pillar-card .learn-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--bg);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid var(--accent);
    cursor: pointer;
    align-self: center; /* Centers button horizontally */
}

.pillar-card:hover .learn-more {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 32px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text);
}

.modal-detail-header {
    margin-bottom: 2rem;
}

.modal-detail-header .icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: block;
}

.modal-detail-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
}

.modal-body-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.modal-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modal-feature-item {
    background: var(--bg);
    padding: 1.2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-light);
}

.modal-feature-item h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.modal-feature-item p {
    font-size: 0.9rem;
    color: #666;
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Solutions */
.solutions {
    background: var(--white);
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.solution-item.reverse {
    flex-direction: row-reverse;
}

.solution-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.features li::before {
    content: '✓';
    font-weight: 900;
}

.solution-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.icon-feature {
    font-style: normal;
    color: var(--primary-light);
    margin-right: 0.5rem;
}

/* Partners */
.partners {
    background: var(--accent);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}


.partner-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Dashboard Preview Enhancement */
.dashboard-preview {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 10rem 0;
}

.glass-mockup {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: #ffffff;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-left { flex: 1; }

.search-bar {
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #a0aec0;
    border: 1px solid #edf2f7;
    width: 60%;
}

.mockup-icons {
    display: flex;
    gap: 1.2rem;
    color: #718096;
    position: relative;
}

.m-icon {
    cursor: pointer;
    position: relative;
}

.notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #f56565;
    border-radius: 50%;
    border: 2px solid white;
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 1px solid #edf2f7;
    padding-left: 1.2rem;
}

.user-info {
    text-align: right;
}

.user-info strong {
    display: block;
    font-size: 0.85rem;
    color: #2d3748;
}

.user-info small {
    font-size: 0.75rem;
    color: #a0aec0;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: #cbd5e0;
    border-radius: 50%;
    background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80');
    background-size: cover;
}

.mockup-body {
    display: flex;
    height: 650px;
    background: #f7fafc;
}

.sidebar {
    width: 70px;
    background: #1a202c;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.sidebar-top, .sidebar-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.s-menu {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.2s;
}

.s-menu.active {
    background: var(--primary-light);
    color: white;
}

.s-menu:not(.active):hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.main-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.top-title h3 {
    font-size: 1.5rem;
    color: #1a202c;
}

.top-title p {
    font-size: 0.85rem;
    color: #718096;
}

.top-actions {
    display: flex;
    gap: 0.8rem;
}

.m-btn-outline {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.m-btn-primary {
    background: var(--primary-light);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.tourist { background: #ebf8ff; color: #3182ce; }
.stat-icon.homestay { background: #f0fff4; color: #38a169; }
.stat-icon.price { background: #fffaf0; color: #dd6b20; }

.stat-data span {
    font-size: 0.8rem;
    color: #718096;
}

.stat-data strong {
    display: block;
    font-size: 1.5rem;
    color: #1a202c;
    margin: 0.2rem 0;
}

.stat-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-footer .trend {
    font-size: 0.75rem;
    font-weight: 700;
}

.stat-footer small {
    font-size: 0.75rem;
    color: #a0aec0;
}

.dashboard-lower-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.chart-container, .activity-log {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.c-title span {
    display: block;
    font-weight: 700;
    color: #2d3748;
}

.c-title small {
    font-size: 0.75rem;
    color: #a0aec0;
}

.chart-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
}

.l-item.domestic::before { background: var(--primary-light); content:''; display:inline-block; width:8px; height:8px; border-radius:50%; margin-right:4px; }
.l-item.foreign::before { background: #cbd5e0; content:''; display:inline-block; width:8px; height:8px; border-radius:50%; margin-right:4px; }

.bar-chart {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1rem;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.bar-stack {
    width: 25px;
    height: 200px;
    background: #f7fafc;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: transform 0.2s;
}

.bar-stack:hover, .bar-stack.active {
    transform: scaleX(1.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.bar.domestic { background: var(--primary-light); }
.bar.foreign { background: #cbd5e0; }

.bar-group small {
    font-size: 0.7rem;
    color: #a0aec0;
}

.activity-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
}

.a-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.a-icon.warning { background: #fffaf0; color: #dd6b20; }
.a-icon.success { background: #f0fff4; color: #38a169; }
.a-icon.info { background: #ebf8ff; color: #3182ce; }

.a-text strong {
    display: block;
    font-size: 0.85rem;
    color: #2d3748;
}

.a-text p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0.1rem 0;
}

.a-text small {
    font-size: 0.7rem;
    color: #a0aec0;
}

.view-all {
    width: 100%;
    margin-top: 1.5rem;
    background: #f7fafc;
    border: 1px solid #edf2f7;
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: 1fr; }
    .dashboard-lower-grid { grid-template-columns: 1fr; }
    .mockup-body { height: auto; }
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: 1fr; }
    .dashboard-lower-grid { grid-template-columns: 1fr; }
    .mockup-body { height: auto; }
}

/* Roadmap */
.roadmap {
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--accent);
}

.timeline-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.t-year {
    width: 100px;
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    padding-top: 0.5rem;
}

.t-content {
    flex: 1;
    background: var(--bg);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.t-content h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 6rem 0 3rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-regency-logo {
    height: 55px;
    width: auto;
    background: rgba(255, 255, 255, 0.1); /* Subtle background to ensure visibility */
    padding: 5px;
    border-radius: 8px;
}

.footer-info .logo {
    color: var(--white);
    font-size: 1.8rem;
}

.footer-info .logo span {
    color: var(--primary-light);
}

.footer-info p {
    opacity: 0.8;
    max-width: 400px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link span {
    font-size: 0.8rem;
    font-weight: 700;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
}

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

.footer-links a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--text-light);
    padding-left: 5px;
}

.footer-contact p {
    opacity: 0.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-email {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-info {
        grid-column: span 1;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FAB Print */
.fab-print {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.fab-print:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

.fab-print span {
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Print Specific */
@media print {
    .navbar, .footer, .fab-print, .hero-btns {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .hero {
        height: auto;
        color: black;
        padding: 2rem 0;
    }
    
    .hero-bg::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
        color: black;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive */

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .solution-item { flex-direction: column !important; text-align: center; }
    .features { justify-content: center; }
    .navbar .btn-primary { display: none; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .nav-links { display: none; }
    .timeline::before { left: 20px; }
    .timeline-item { gap: 2rem; }
    .t-year { width: 60px; font-size: 0.8rem; text-align: left; }
    .stats-grid { grid-template-columns: 1fr; }
}
