/* Main Stylesheet */
/* DEV DHAMUS - ASAL ACEH - PEMBUATAN WEB 082132175370 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
}

body {
    font-family: var(--body-font, 'Lato'), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo a {
    text-decoration: none;
    display: inline-block;
}

.nav-logo h2 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo:hover h2 {
    color: var(--accent-color);
}

.nav-logo .logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-fill,
.btn-primary-ghost,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    font-family: var(--heading-font, 'Playfair Display'), serif;
}

.btn-primary-fill {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.15);
}

.btn-primary-ghost {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-primary-ghost:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-ghost {
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-color);
    background: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-title {
    position: relative;
    z-index: 2;
    text-align: left;
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.9),
        0 0 30px rgba(0,0,0,0.7),
        0 0 50px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.3s;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 30px 40px;
    margin: 0;
    margin-bottom: 80px;
    margin-left: 60px;
    max-width: calc(100% - 120px);
}

.slide-title span {
    display: inline-block;
    margin: 0 8px;
    font-family: var(--script-font);
    text-transform: none;
    font-style: normal;
    font-weight: 400;
}


.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.8);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.slider-btn:active {
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    padding: 10px 20px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.3);
}

.slider-dot.active {
    background: white;
    transform: scale(1.4);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Parallax Sections */
.parallax-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    z-index: -1;
}

.section-title {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.gallery-section .section-heading,
.testimonials-section .section-heading {
    margin-bottom: 50px;
}

.gallery-section .section-heading .eyebrow,
.testimonials-section .section-heading .eyebrow {
    color: var(--accent-color);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.5s;
}

.testimonial-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.testimonial-header h3 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.rating {
    color: #ffc107;
    margin-left: auto;
    display: flex;
    gap: 2px;
    font-size: 0.9rem;
}

.rating .fa-star-o {
    color: #ddd;
}

/* Contact */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

/* About */
.about-section {
    background: var(--primary-color);
    padding: 120px 0;
    position: relative;
    color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-text {
    color: #fff;
}

.about-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text .eyebrow {
    color: var(--accent-color);
}

.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
}

.about-collage .collage-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 16 / 10;
}

.about-collage .collage-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 1 / 1;
}

.about-collage .collage-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1 / 1;
}

.about-collage .collage-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
    aspect-ratio: 16 / 10;
}

.about-collage .collage-card:nth-child(5) {
    grid-column: 1 / 4;
    grid-row: 3;
    aspect-ratio: 16 / 9;
}

.collage-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Packages */
.packages-section {
    padding: 120px 0;
    background: var(--bg-color);
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-heading .eyebrow {
    color: var(--accent-color);
}

.section-heading .eyebrow span {
    display: inline-block;
    margin: 0 4px;
}

.section-heading h2 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.section-heading p {
    color: #4b4b4b;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.package-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.package-top h3 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.package-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.package-desc {
    color: #4b4b4b;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3e3e3e;
}

.package-features i {
    color: var(--primary-color);
}

.package-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

/* Process */
.process-section {
    padding: 120px 0;
    background: var(--primary-color);
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.process-text {
    color: #fff;
}

.process-text .eyebrow {
    color: var(--accent-color);
}

.process-text h2 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 12px 0 16px;
    color: #fff;
    line-height: 1.2;
}

.process-text p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.process-steps {
    display: grid;
    gap: 12px;
}

.step-card {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px 18px 16px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
}

.step-number {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card h4 {
    margin: 4px 0 8px;
    font-size: 1.1rem;
    font-family: var(--heading-font, 'Playfair Display'), serif;
}

.step-card p {
    margin: 0;
    color: rgba(255,255,255,0.85);
}

/* Contact */
.contact-section {
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-card h3 {
    font-family: var(--heading-font, 'Playfair Display'), serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-card p {
    margin: 8px 0;
    color: #444;
}

.contact-visual {
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.contact-card .eyebrow {
    color: var(--accent-color);
}

.contact-card .whatsapp-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slider {
        min-height: 500px;
        max-height: 700px;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 4.5vw, 3.5rem);
        padding: 25px 30px;
        margin-bottom: 60px;
        margin-left: 40px;
        max-width: calc(100% - 80px);
        letter-spacing: 1.5px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 15px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .about-section,
    .packages-section,
    .process-section {
        padding: 80px 0;
    }
    
    .section-heading {
        margin-bottom: 40px;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .slide-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        letter-spacing: 1px;
        padding: 20px 25px;
        margin-bottom: 50px;
        margin-left: 25px;
        max-width: calc(100% - 50px);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-dots {
        bottom: 25px;
        padding: 8px 15px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .slide-title {
        font-size: clamp(1.3rem, 6vw, 2rem);
        letter-spacing: 1px;
        padding: 15px 20px;
        margin-bottom: 40px;
        margin-left: 20px;
        max-width: calc(100% - 40px);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-dots {
        bottom: 15px;
        padding: 6px 12px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .about-grid,
    .process-grid,
    .package-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .about-collage .collage-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16 / 9;
    }
    
    .about-collage .collage-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: 1 / 1;
    }
    
    .about-collage .collage-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 1 / 1;
    }
    
    .about-collage .collage-card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3;
        aspect-ratio: 16 / 9;
    }
    
    .about-collage .collage-card:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 4;
        aspect-ratio: 16 / 9;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .about-actions .btn-primary-fill,
    .about-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .package-actions .btn-primary-fill,
    .package-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

