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

:root {
    --primary-color: #009EFF;
    --primary-dark: #0088dd;
    --primary-light: #33b2ff;
    --secondary-color: #0056b3;
    --text-color: #333;
    --light-text: #777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: rgba(0, 158, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* diperkecil untuk mobile */
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: #e6f7ff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.hero-content {
    flex: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-studi {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.prodi-card {
    flex: 1 1 250px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.prodi-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.prodi-card p {
    margin-bottom: 20px;
}

.btn-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-small:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Vision Mission Section */
.vision-mission {
    background-color: var(--white);
}

.vm-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.vm-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.vm-item:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.vm-item:hover h3,
.vm-item:hover .vm-icon {
    color: var(--white);
}

.vm-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.vm-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.vm-item ul {
    text-align: left;
    list-style-position: inside;
}

.vm-item li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Structure Section */
.structure {
    background-color: var(--bg-light);
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.org-item {
    text-align: center;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 280px;
}

.org-item.dean {
    max-width: 300px;
}

.photo {
    margin-bottom: 15px;
}

.photo img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.org-item.dean .photo img {
    width: 150px;
}

.info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.info p {
    color: var(--light-text);
    font-size: 0.85rem;
}

.dosen-list h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dosen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.dosen-item {
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.dosen-item:hover {
    transform: translateY(-3px);
}

.dosen-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.dosen-item p {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Documents Section */
.documents {
    background-color: var(--white);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.doc-item {
    background-color: var(--bg-light);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.doc-item:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.doc-item:hover h3,
.doc-item:hover p,
.doc-item:hover .doc-icon {
    color: var(--white);
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.doc-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.doc-item p {
    margin-bottom: 15px;
    color: var(--light-text);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-download {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-download:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

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

.contact-info h3,
.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 3px;
    color: var(--primary-color);
    font-size: 1rem;
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 158, 255, 0.2);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.footer-col .logo {
    margin-bottom: 15px;
}

.footer-col .logo img {
    height: 50px;
}

.footer-col .logo-text h3 {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: var(--primary-light);
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-col ul li i {
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Modal untuk Galeri */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.modal-content {
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.slide img {
    max-width: 95%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.caption {
    text-align: center;
    color: var(--white);
    padding: 15px;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    margin-top: 15px;
    max-width: 90%;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-light);
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    margin-top: -22px;
    color: var(--white);
    font-weight: bold;
    font-size: 22px;
    transition: 0.3s ease;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    user-select: none;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 158, 255, 0.8);
    transform: scale(1.1);
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

/* Animasi slide */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide.active {
    animation: fadeIn 0.5s ease;
}

/* Notifikasi Download */
.download-notification {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 280px;
    width: calc(100% - 30px);
}

.download-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.1rem;
}

.notification-content span {
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform-origin: left;
    animation: progress 3s linear;
}

@keyframes progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* Halaman Program Studi */
.hero-prodi {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.hero-prodi h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-prodi p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    padding: 0 15px;
}

.prodi-detail {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.prodi-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .prodi-content {
        grid-template-columns: 2fr 1fr;
    }
}

.prodi-info h2 {
    color: var(--primary-color);
    margin: 25px 0 10px;
    font-size: 1.5rem;
}

.prodi-info h2:first-child {
    margin-top: 0;
}

.prodi-info p,
.prodi-info li {
    font-size: 0.95rem;
}

.prodi-info ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.sidebar-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
}

.info-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-card .btn-download {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.sidebar-card .btn-download:last-child {
    margin-bottom: 0;
}

.sidebar-card ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-card li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    font-size: 0.95rem;
}

.sidebar-card li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Dosen Prodi Section */
.dosen-prodi {
    padding: 60px 0;
    background-color: var(--white);
}

.dosen-prodi .dosen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.dosen-prodi .dosen-item {
    background-color: var(--bg-light);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.dosen-prodi .dosen-item:hover {
    transform: translateY(-5px);
}

.dosen-prodi .dosen-photo {
    margin-bottom: 15px;
}

.dosen-prodi .dosen-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.dosen-prodi .dosen-item h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.dosen-prodi .dosen-item p {
    margin-bottom: 5px;
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Achievements Section */
.achievements {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.achievement-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.achievement-item:hover h3,
.achievement-item:hover p,
.achievement-item:hover .achievement-icon {
    color: var(--white);
}

.achievement-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.achievement-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.achievement-item p {
    color: var(--light-text);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Active menu */
nav ul li a.active {
    color: #e6f7ff;
    font-weight: 600;
}

/* Media Queries untuk Responsif */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {

    /* Header Mobile */
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        padding: 12px 20px;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-content a {
        color: var(--white);
        padding: 10px 20px;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .dropdown:hover .dropdown-content {
        display: none;
        /* nonaktifkan hover di mobile */
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    /* Program studi cards */
    .program-studi {
        flex-direction: column;
        align-items: center;
    }

    .prodi-card {
        width: 100%;
        max-width: 400px;
    }

    /* Struktur organisasi */
    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .org-item {
        width: 100%;
        max-width: 300px;
    }

    /* Dosen grid */
    .dosen-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery overlay */
    .gallery-overlay {
        transform: translateY(0);
        /* tampilkan selalu di mobile agar terlihat */
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 10px;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col .logo {
        justify-content: center;
    }

    .footer-col ul li i {
        width: auto;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .vm-content {
        grid-template-columns: 1fr;
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .modal .prev,
    .modal .next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}