:root {
    --primary-color: #0b5e91;
    --secondary-color: #baa971;
    --text-dark: #333;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: "Instrument Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

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

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

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.login-btn {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 5px;
}

.login-btn:hover {
    background-color: #a7945e;
    color: white !important;
    box-shadow: 0 4px 8px rgba(186, 169, 113, 0.3);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 94, 145, 0.8), rgba(11, 94, 145, 0.4));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    color: white;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(186, 169, 113, 0.2);
    border: 1px solid rgba(186, 169, 113, 0.4);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
}

.hero-text h1 {
    font-family: "El Messiri", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    color: var(--secondary-color);
}

.hero-countdown {
    margin-top: 40px;
}

.countdown-title h3 {
    color: var(--secondary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    font-family: "El Messiri", sans-serif;
}

.countdown-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0.3;
    }
}

.countdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--secondary-color), #d4c085);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(186, 169, 113, 0.3);
}

.countdown-cta:hover {
    background: linear-gradient(45deg, #a7945e, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(186, 169, 113, 0.4);
    color: white;
}

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

.hero-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: #a7945e;
    border-color: #a7945e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(186, 169, 113, 0.3);
}

/* Global Section Styles */
.section-title {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-hover {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-5px);
}

.btn-uaa {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-uaa:hover {
    background-color: #094b75;
    color: white;
    transform: translateY(-2px);
}

/* Program Studi Styles */
.bg-pattern {
    background-color: var(--bg-light);
}

.fakultas-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.fakultas-tab {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fakultas-tab:hover {
    background-color: rgba(11, 94, 145, 0.1);
    transform: translateY(-2px);
}

.fakultas-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.fakultas-pane {
    display: none;
}

.fakultas-pane.active {
    display: block;
}

.fakultas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(11, 94, 145, 0.2);
}

.fakultas-header h3 {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.8rem;
    margin: 0;
}

.prodi-card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.prodi-header {
    padding: 20px;
    background-color: rgba(11, 94, 145, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.prodi-header h4 {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.akreditasi-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.prodi-body {
    padding: 20px;
}

.prodi-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Jalur Pendaftaran Styles */
.section-subtitle {
    display: inline-block;
    background-color: rgba(11, 94, 145, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.jalur-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.jalur-card:hover {
    transform: translateY(-5px);
}

.jalur-card.highlight {
    border-top-color: var(--secondary-color);
}

.jalur-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(11, 94, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.jalur-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.jalur-card:hover .jalur-icon {
    background-color: var(--primary-color);
}

.jalur-card:hover .jalur-icon i {
    color: white;
}

.jalur-content h3 {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.jalur-tag {
    display: inline-block;
    background-color: rgba(186, 169, 113, 0.1);
    color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.jalur-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jalur-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1rem;
}

.feature span {
    color: #495057;
    font-size: 0.9rem;
}

.jalur-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-info {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.btn-status {
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-status.open {
    background-color: var(--primary-color);
    color: white;
}

.btn-status.open:hover {
    background-color: #094b75;
    transform: translateY(-3px);
}

.btn-status.closed {
    background-color: #dc3545;
    color: white;
    cursor: not-allowed;
}

/* Program Styles */
.program-card {
    overflow: hidden;
    height: 100%;
}

.program-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.program-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.status-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-tag.open {
    background-color: var(--primary-color);
    color: white;
}

.status-tag.closed {
    background-color: #dc3545;
    color: white;
}

.status-tag.soon {
    background-color: var(--secondary-color);
    color: white;
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.program-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-outline {
    padding: 10px 20px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: rgba(11, 94, 145, 0.1);
}

/* Brosur Styles */
.brosur-carousel {
    position: relative;
    overflow: hidden;
}

.brosur-slide {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.brosur-item {
    flex: 0 0 calc(33.333% - 14px);
    overflow: hidden;
    height: 100%;
}

.brosur-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.brosur-card:hover {
    transform: translateY(-5px);
}

.brosur-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.brosur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brosur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 94, 145, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brosur-item:hover .brosur-overlay {
    opacity: 1;
}

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

.download-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.brosur-content {
    padding: 20px;
    text-align: center;
}

.brosur-content h3 {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.brosur-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.brosur-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brosur-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.brosur-indicators {
    display: flex;
    gap: 8px;
}

.brosur-dot {
    width: 12px;
    height: 12px;
    border: none;
    background: rgba(11, 94, 145, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brosur-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.btn-gold {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #a7945e;
    color: white;
    transform: translateY(-2px);
}

.fakultas-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.fakultas-link:hover {
    color: #a7945e;
    transform: translateX(5px);
}

.btn-prodi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-prodi:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.barcode-img {
    width: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px;
    background-color: rgb(254, 254, 254);
    transition: transform 0.3s ease;
    margin-top: 25px;
}

.barcode-img:hover {
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 991px) {
    .footer-top {
        padding: 0 20px;
    }

    .footer-logo {
        width: 160px;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 0 15px;
    }

    .footer-nav {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .copyright {
        text-align: center;
    }

    .footer-links h5 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .brosur-item {
        flex: 0 0 100%;
    }
}

/* Info Styles */
.info-card {
    padding: 40px 30px;
    height: 100%;
    text-align: center;
}

.info-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(11, 94, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
}

.info-card:hover .info-icon i {
    color: white;
}

.info-card h3 {
    color: var(--primary-color);
    font-family: "El Messiri", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Hero Navigation */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.custom-indicators {
    display: flex;
    gap: 10px;
    margin: 0;
    position: static;
}

.custom-indicators button {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 5px;
    margin: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: white;
    font-family: "El Messiri", sans-serif;
    font-size: 1.2rem;
}

.custom-indicators button.active {
    opacity: 1;
    position: relative;
}

.custom-indicators button.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5px;
    width: 20px;
    height: 2px;
    background-color: var(--secondary-color);
}

.carousel-nav-buttons {
    display: flex;
    gap: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-down a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

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

.scroll-text {
    font-size: 12px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 30px;
    font-family: "Instrument Sans", sans-serif;
}

.footer-top {
    padding: 0 30px;
    background-image: linear-gradient(rgba(11, 94, 145, 0.97), rgba(11, 94, 145, 0.97)), url("/assets/bg.png");
    background-size: cover;
    background-position: center;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.footer-links h5 {
    font-family: "El Messiri", sans-serif;
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 767px) {
    .hero-section {
        height: 100vh;
        min-height: 650px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .countdown-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}