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

:root {
    /* Clean Modern Color Palette */
    --primary-black: rgba(0, 0, 0, 0.75);
    --primary-dark: rgba(26, 26, 26, 0.75);
    --accent-gold: #d4af37;
    --accent-blue: #0057b7; /* Ukrainian blue */
    --accent-red: #c41e3a; /* Ukrainian red */

    /* Light Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-lighter: #fafafa;
    --bg-card: #ffffff;

    /* Text Colors */
    --text-dark: rgba(0, 0, 0, 0.75);
    --text-gray: #4a4a4a;
    --text-muted: #888888;
    --text-white: #ffffff;

    /* Clean Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-gray);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ===========================================
   TYPOGRAPHY SYSTEM - Standardized Styles
   =========================================== */

/* Header 1 - Main page title */
.header1,
h1 {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--primary-black);
}

/* Header 2 - Section titles */
.header2,
h2 {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--primary-black);
}

/* Header 3 - Subsection titles */
.header3,
h3 {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0px;
    color: var(--primary-black);
}

/* Header 4-6 - Smaller headings */
h4, h5, h6 {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--primary-black);
}

/* Regular Text - Body copy */
.text-regular,
p {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Bold Text - Emphasis */
.text-bold,
strong,
b {
    font-weight: 700;
    color: var(--primary-black);
}

/* Note Text - Small annotations */
.text-note {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

/* Button Text */
.btn {
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

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

/* Navigation - Clean and Minimal */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 0px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-brand-icon {
    height: 64px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e87605;
    transition: width 0.2s ease;
}

.nav-menu a:hover {
    color: rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-black);
    transition: 0.3s;
}

/* Hero Section - With Background Image */
.hero {
    min-height: 90vh;
    background: url('images/hero-background.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo-container {
    position: relative;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 2rem auto;
    /* Set explicit aspect ratio to prevent layout shift */
    /* Aspect ratio from SVG viewBox: 204.47:195 ≈ 1.049:1 */
    aspect-ratio: 204.47 / 195;
    display: block;
}

.hero-logo-words {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-logo-vinok {
    position: absolute;
    /* Match container width instead of fixed pixels */
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: rotate 40s linear infinite;
    /* Ensure vinok is visible while loading */
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Buttons - Clean Modern Style */
.btn {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--primary-black);
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-primary {
    background: transparent;
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--primary-black);
    color: var(--bg-white);
}

/* Hero button variant - white on dark background */
.hero .btn-primary {
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 0.8rem;
    /* Ensure consistent border on all devices */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 1);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

/* Section Divider */
.section-divider {
    position: relative;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.section-divider-decoration {
    position: absolute;
    height: 80px;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}

/* Specific divider sizes and positions */
.section-divider-decoration.mak1 {
    height: 160px;
    top: 100px;
    transform: translateY(-50%);
}

.section-divider-decoration.mak3 {
    height: 120px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--primary-black);
}

.services .section-title {
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    margin-bottom: 2.4rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-wrapper .section-title {
    margin-bottom: 0;
    text-align: center;
}

.section-title-decoration {
    height: 60px;
    width: auto;
}

.section-title-decoration-left {
    order: -1;
}

.section-title-decoration-right {
    order: 1;
}

/* Specific decoration styles */
.about .section-title-wrapper {
    position: relative;
}

.about .section-title {
    position: relative;
    left: 0;
}

.about .section-title-decoration-right {
    height: 180px;
    transform: translateY(-20%);
    position: absolute;
    left: calc(50% + 150px);
}

.gallery .section-title-decoration-right {
    height: 120px;
    transform: translateY(-20%) rotate(180deg);
}

.section-title::after {
    display: none;
}

/* About Section */
.about {
    background: var(--bg-white);
    padding-top: 200px;
}

.about-content {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 3rem;
    align-items: stretch;
}

.about-text {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-name {
    font-size: 1.1rem;
}

.about-closing {
    margin-top: auto;
}

.about-closing a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.about-closing a:hover {
    color: #e87605;
    border-bottom-color: #e87605;
}

.about-image {
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.placeholder-image {
    background: var(--bg-light);
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 500px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Services Section */
.services {
    background: var(--bg-lighter);
}

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

.service-card {
    background: var(--bg-white);
    border: none;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-image {
    width: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-package {
    margin-top: auto;
    padding: 8px 21px;
    border: 1.5px solid #e87605;
    background: transparent;
    color: #e87605;
    font-size: 0.64rem;
    text-align: center;
    align-self: flex-start;
}

.btn-package:hover {
    background: #e87605;
    color: var(--bg-white);
}

/* Gallery Section */
.gallery {
    background: var(--bg-white);
    padding-bottom: 45px;
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-slider {
    overflow: hidden;
    flex: 1;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.gallery-item {
    flex: 0 0 auto;
    border: none;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
}

.gallery-item .placeholder-image {
    height: 320px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 1rem;
}

.gallery-item img {
    width: auto;
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    background: transparent;
    border: none;
    color: var(--primary-black);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.carousel-arrow:hover {
    color: #e87605;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.gallery-item {
    cursor: pointer;
}

.view-full-gallery {
    display: inline-block;
    padding: 8px 21px;
    border: 1.5px solid #e87605;
    background: transparent;
    color: #e87605;
    font-size: 0.64rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-full-gallery:hover {
    background: #e87605;
    color: var(--bg-white);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--primary-black);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #e87605;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary-black);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-nav:hover {
    color: #e87605;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev {
    left: 40px;
}

.lightbox-nav-next {
    right: 40px;
}

/* Contact Section */
.contact {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60%;
    width: auto;
    z-index: 0;
    opacity: 0.9;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    filter: none;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-gray);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 26px;
    height: 26px;
}

.social-link:hover {
    color: #e87605;
    transform: translateY(-2px);
}

/* Contact Form - Clean Modern */
.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border: none;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-black);
    letter-spacing: 0px;
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Aptos', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-group select {
    /* Custom dropdown arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"%3E%3Cpath fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M2 5l5 5 5-5"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group select option {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    display: none;
    border-left: 4px solid;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
}

.form-message.success {
    background: #fff5e6;
    color: rgba(0, 0, 0, 0.8);
    border-color: #e87605;
}

.form-message.error {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.3);
}

/* ===========================================
   IN THE NEWS SECTION
   =========================================== */

.news {
    background: #f0f0f0;
    padding: 45px 0;
}

.news-carousel {
    position: relative;
    margin-top: 3rem;
    padding-bottom: 60px;
}

.news-slider {
    overflow: hidden;
}

.news-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.news-item {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0.75rem;
    min-height: 95px;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.news-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    padding: 0;
}

.news-source {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    line-height: 1.3;
}

.news-year {
    color: #000000;
    font-weight: 400;
    font-size: 0.85rem;
    font-style: italic;
}

.news-title {
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: #888888;
    margin: 0 0 0.3rem 0;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: #e87605;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #000000;
    text-decoration: underline;
}

.news-link-disabled {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
    margin: 0;
}

/* News carousel navigation arrows */
.news-carousel .carousel-arrow {
    position: absolute;
    bottom: 10px;
    top: auto;
    transform: translateY(0);
    background: transparent;
    color: #e87605;
    border: none;
    width: 52px;
    height: 52px;
    font-size: 2.25rem;
}

.news-carousel .carousel-arrow:hover {
    color: #000000;
}

.news-carousel .carousel-arrow-left {
    left: 50%;
    margin-left: -60px;
}

.news-carousel .carousel-arrow-right {
    right: 50%;
    margin-right: -60px;
}

/* Footer - Clean and Minimal */
.footer {
    background: var(--bg-white);
    color: var(--text-gray);
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid #f0f0f0;
    font-weight: 400;
    letter-spacing: 0px;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        padding: 3rem 0;
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-logo-container {
        max-width: 200px;
        /* Maintain same aspect ratio on mobile */
        aspect-ratio: 204.47 / 195;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }

    .contact-info .contact-item p {
        font-size: 1.0rem;
        line-height: 1.12;
    }

    /* Photo credits block needs more line spacing */
    .contact-info .contact-item:last-child p {
        line-height: 1.5;
    }

    /* Add extra space after photo credits to lower background flower */
    .contact-info .contact-item:last-child {
        margin-bottom: 3rem;
    }

    .contact-item {
        margin-bottom: 0.9rem;
    }

    .social-links {
        margin-bottom: 0.9rem;
    }

    .section-intro {
        margin-bottom: 1.2rem;
    }

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

    .gallery-carousel {
        gap: 1rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    /* Mobile: 1 image per line, 350px height */
    .gallery-item {
        flex: 0 0 100%;
        height: 350px;
        box-shadow: none;
        border: none;
    }

    .gallery-item:hover {
        box-shadow: none;
        transform: none;
    }

    .gallery-item img {
        height: 350px;
    }

    /* Mobile: add space after mak3 decoration (same as mak2 to Dance Packages) */
    .gallery {
        padding: 120px 0 25px 0;
    }

    /* Mobile: News section - 1 item at a time */
    .news-slider {
        margin: 0;
    }

    .news-track {
        gap: 0;
    }

    .news-item {
        flex: 0 0 100%;
        flex-direction: row;
        min-height: auto;
        padding: 0.75rem;
    }

    .news-image {
        width: 75px;
        height: 75px;
    }

    .news-content {
        gap: 0.6rem;
        padding: 0;
    }

    .news-source {
        font-size: 0.95rem;
    }

    .news-title {
        font-size: 0.95rem;
    }

    .news-excerpt {
        -webkit-line-clamp: 3;
        font-size: 0.85rem;
    }

    .news-link, .news-link-disabled {
        font-size: 0.9rem;
    }

    .news-carousel .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .news-carousel .carousel-arrow-left {
        margin-left: -60px;
    }

    .news-carousel .carousel-arrow-right {
        margin-right: -60px;
    }

    /* Mobile: make mak4 decoration half the size */
    .contact-decoration {
        height: 30%;
    }

    /* Mobile Lightbox: Full screen with orange arrow backgrounds */
    .lightbox {
        background: rgba(0, 0, 0, 0.95);
    }

    .lightbox img {
        max-width: 100%;
        max-height: 100%;
        box-shadow: none;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        color: var(--text-white);
        font-size: 2.5rem;
    }

    .lightbox-nav {
        background: #e87605;
        color: var(--text-white);
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        border-radius: 0;
        /* Ensure arrow is centered in the square */
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .lightbox-nav:hover {
        background: #d06805;
        color: var(--text-white);
        transform: translateY(-50%) scale(1.05);
    }

    .lightbox-nav-prev {
        left: 10px;
    }

    .lightbox-nav-next {
        right: 10px;
    }
}

/* Medium screens - 3 items */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(33.333% - 0.67rem);
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 0px;
    }

    .section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-black);
    color: var(--bg-white);
}
