html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* This is the fix! */
}
/* ======== Global Styles & Variables (LIGHT THEME) ======== */
:root {
    --color-primary: #ff7e00; /* Orange (Brand) */
    --color-secondary: #ff3000; /* Red-Orange (Brand) */
    --color-bg: #f0f0f0;      /* Light background (was #111) */
    --color-bg-alt: #ffffff;  /* White background (was #1a1a) */
    --color-text: #000000;    /* Dark text (was #f0f0f0) */
    --color-text-dark: #ffffff;  /* Light text for buttons (was #333) */
    --font-primary: 'Poppins', sans-serif; /* <-- ADD THIS LINE */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
    border-top: 1px solid #000000; /* This adds the light gray separator line */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-dark); /* Light text on orange */
}
.btn-primary:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark); /* Light text on orange */
}


/* ======== Header & Navigation ======== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9); /* Light semi-transparent bg */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #ddd; /* Light border */
    margin: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px; /* Remove left/right padding, keep 10px on right */
    max-width: 100%; /* Ensure it spans full width */
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 10px; /* Set a fixed 10px from the left edge */
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.nav-links { /* Target the <ul> element itself */
    display: flex;
    list-style: none;
    margin-right: 10px; /* Set a fixed 10px from the right edge */
}

.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    color: var(--color-text); /* Dark text */
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text); /* Dark bar */
    border-radius: 3px;
    transition: all 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ======== Home/Hero Section ======== */
/* New code */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; <-- REMOVED */
    /* text-align: center; <-- REMOVED */
    background: url('Homepage Images/hero-background.png') no-repeat center center/cover;
    color: #fff;
    padding-top: 70px;
}
.hero-content {
    /* This pushes the text block to the right */
    width: 60%; /* Or you can use a fixed width like 800px */
    margin-left: auto; /* Pushes the block to the right */
    margin-right: 10%; /* Adds space from the right edge */
    text-align: left; /* Aligns text to the left of the block */
}
.hero-content h1 {
    font-size: 2.5rem; /* Reduced from 4rem */
    margin-top: 160px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Acumin Variable Concept", sans-serif;
    font-style: italic;
}
.hero-content p {
    font-size: 0.8rem; /* Reduced from 1.2rem */

    
}

/* This styles the "MASTERPIECES" word */
.hero-content h1 span {
    /* Create the gradient using your brand colors */
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    
    /* Apply the gradient as the text color */
    background-clip: text;
    -webkit-background-clip: text; /* For Safari */
    color: transparent;
}
.hero-buttons {
    text-align: center;
    margin-top: 120px;

}
/* New code */
.hero-buttons .btn {
    margin: 0 10px;
}
/* Force both buttons to use the secondary style initially */
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
/* Force both buttons to use the hover style */
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-dark); /* Light text on orange */
    border-color: var(--color-primary); /* Ensure border matches */
}


/* ======== About Section ======== */
/* New corrected code */
.about-section {
    background-color: #ffffff; /* Light gray */
}

/* This targets the "About ARCLIGHT" heading */
.about-section h2 {
    margin-bottom: 60px; /* Increases space below heading (was 20px) */
    text-align: center;

    /* Create the gradient */
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    
    /* Apply the gradient as the text color */
    background-clip: text;
    -webkit-background-clip: text; /* For Safari */
    color: transparent;
}
/* New corrected code */
/* New corrected code */
.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Aligns content to the top of each column */
    gap: 40px;
    justify-content: flex-start;
    text-align: left;
    margin-left: 0; /* Ensures the entire block starts from the left edge of the container */
}
.about-text {
    flex-basis: 55%;
    padding-top: 0; /* Ensures text starts at the very top of its container */
    font-size: 1.1rem;
}
/* New corrected code */
.about-image {
    flex-basis: 50%; /* Image block takes up 45% of the width */
    flex-shrink: 0;
    text-align: left; /* This is the fix! Aligns the image to the left */
    
}
.about-image img {
    border-radius: 8px;
    max-width: 100%; /* The image can't be wider than its container */
    height: auto;
    display: inline-block; /* Allows text-align to work */
}


/* ======== Services Section ======== */
.services-section.alt-bg {
    background-color: var(--color-bg-alt); /* White */
}
.services-section h2 {
    margin-bottom: 60px; /* Increases space below heading (was 20px) */
    text-align: center;

    /* Create the gradient */
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    
    /* Apply the gradient as the text color */
    background-clip: text;
    -webkit-background-clip: text; /* For Safari */
    color: transparent;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-item {
    background-color: #ffffff; /* Light gray cards */
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #000000; /* Light border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service-icon {
    margin-bottom: 15px;
    /* This centers the image in the card */
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    /* Set the size of your animated icon */
    width: 64px;  /* You can adjust this size */
    height: 64px; /* You can adjust this size */
}
.service-item h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.service-item p { 
    font-size: 1rem;
}

/* ======== Portfolio Section (Homepage) ======== */
.portfolio-section {
    background-color: #ffffff;
}
.portfolio-section h2 {
    margin-bottom: 40px; /* Increases space below heading (was 20px) */
    text-align: center;

    /* Create the gradient */
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    
    /* Apply the gradient as the text color */
    background-clip: text;
    -webkit-background-clip: text; /* For Safari */
    color: transparent;
}
.portfolio-section.alt-bg {
    background-color: #ffffff;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
#photography .portfolio-item {
    aspect-ratio: 5 / 6; /* Makes photo cards slightly taller than wide */
}
#videography .portfolio-item {
    aspect-ratio: 5 / 6; /* Makes video cards taller and narrower (portrait video style) */
}
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    transition: opacity 0.3s ease;
}
.item-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
}
.item-overlay.video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    top: 0;
    height: 100%;
}
.portfolio-item:hover .item-overlay.video {
    opacity: 1;
}
.play-icon {
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
}

/* Filter Bar Styles */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.filter-bar button {
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text); /* Dark text */
    background-color: var(--color-bg-alt); /* White */
    border: 1px solid #ccc; /* Light border */
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-bar button:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}
.filter-bar button.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-dark); /* Light text */
}
.portfolio-item.hide {
    display: none;
}

/* ======== Contact Section (NEW STYLES) ======== */
.contact-section {
    background-color: var(--color-bg-alt); /* White background */
    border-top: 1px solid #000000; /* Light border */
    padding-top: 80px;
    padding-bottom: 80px; /* Resets padding */
}

/* This centers the "Contact Us" heading */
.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The "Contact Us" heading */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    /* Gradient text */
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contact-content {
    display: flex;
    flex-direction: row;
    gap: 60px; /* Space between columns */
    text-align: left; /* Reset alignment */
    width: 100%;
}
/* --- NEW CORRECTED CODE --- */
.contact-form-wrapper {
    flex-basis: 50%;
    /* REMOVE any text-align: center; */
}

/* This rule makes BOTH underlines align left by default */
.contact-subheading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.contact-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* This makes it left-aligned */
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}

.contact-form {
    width: 100%;
    text-align: left; /* This keeps your form labels left-aligned */
}

/* Right Column (Info) */
.contact-info {
    flex-basis: 50%;
}

/* --- New Form Styles --- */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: var(--color-text);
    font-family: var(--font-primary);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* --- New Info Column Styles --- */
.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* New style for "icon + text" rows */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-item i {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-right: 15px;
    width: 20px; /* Aligns icons */
    text-align: center;
}

/* --- New Social Icon Styles --- */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.social-icons a {
    font-size: 1.6rem;
    color: var(--color-text);
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
    color: var(--color-primary);
    transform: scale(1.15);
}

/* --- Button Style Update --- */
/* This makes the secondary button solid red-orange */
.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
    border: 2px solid var(--color-secondary);
}
.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    border: 2px solid var(--color-primary);
}

/* ======== Footer ======== */
footer {
    padding: 30px 0;
    background-color: var(--color-bg-alt); /* White */
    text-align: center;
    border-top: 1px solid #000000; /* Light border */
}


/* =======================================================
   ALBUM PAGE STYLES
   ======================================================= */

/* ======== Album Header ======== */
.album-header {
    padding: 100px 0 40px 0;
    text-align: center;
    background-color: var(--color-bg-alt); /* White */
}
.album-header h1 {
    font-size: 3rem;
    margin: 0;

    /* --- ADD THESE LINES FOR THE GRADIENT --- */
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text; /* For Safari compatibility */
    color: transparent;
    
}
.album-header p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 15px auto 0;
    opacity: 0.8;
}
.back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--color-text); /* Dark text */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.back-link:hover {
    color: var(--color-primary);
}

/* ======== Album Grid (Photos) ======== */
.album-grid-container {
    padding: 60px 0;
    background-color: #ffffff; /* Light gray */
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.album-photo {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.album-photo:hover img {
    transform: scale(1.1);
}

/* ======== Album Grid (Videos) - Uses homepage .portfolio-grid styles ======== */
.video-grid-container {
    padding: 60px 0;
    background-color: var(--color-bg); /* Light gray */
}

/* ======== PHOTO LIGHTBOX STYLES ======== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Dark overlay is good */
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;   
    height: auto;  
    object-fit: contain;
    border-radius: 5px;
}
#lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 15px;
    font-size: 1.2rem;
    position: absolute;
    bottom: -40px;
    width: 100%;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--color-primary); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
    padding: 15px;
    transition: color 0.3s;
    z-index: 2001;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--color-primary); }


/* ======== VIDEO LIGHTBOX STYLES ======== */
.video-container {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =======================================================
   RESPONSIVE STYLES
   ======================================================= */  
@media (max-width: 1865px) and (min-width: 1200px) {

    .hero-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: right;

        /* --- ADJUSTMENTS --- */
        
        /* Make the content block much wider */
        right: 5%; 
        width: 70%; /* Was 60% */
        max-width: 800px; 
    }

    .hero-content h1 {
        /* Make the font smaller to ensure it fits */
        font-size: 2.2rem; /* Was 2.2rem */
        margin-top: 160px;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .hero-buttons {
        text-align: center;
        /* Move the button up */
        margin-top: 120px; /* Was 30px or more */
        margin-right: 0;
    }
}

   @media (max-width: 1200px) {

    .hero-content {
        /* This "un-locks" the content from its absolute position */
        position: static;
        transform: none;
        
        /* This centers the content for smaller screens */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Resets to a good mobile/tablet size */
        margin-top: 0;     /* Resets the large desktop margin */
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        text-align: center; /* Centers the button(s) */
        margin-top: 40px;
        margin-right: 0;
    }

    /* This handles the button stacking on small mobile */
    @media (max-width: 768px) {
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
    }
}

@media (max-width: 992px) {
    /* Add this inside the (max-width: 992px) media query */

.hero-content {
    /* This resets the desktop alignment */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center all text and buttons */
}
.hero-buttons {
    /* This resets the desktop alignment */
    text-align: center;
    margin-right: 0; /* Resets desktop margin */
}
    
    .container {
        padding: 0 30px;
    }
    h2 {
        font-size: 2.2rem;
    }

    /* --- Tablet Hero --- */
    .hero-content h1 {
        font-size: 3rem;
    }

    /* --- Tablet Stacking --- */
    .about-content,
    .contact-content {
        flex-direction: column; /* Stacks the columns */
    }

    /* --- Tablet About --- */
    .about-image {
        flex-basis: 100%; /* Lets image take full width */
        margin-bottom: 20px;
        text-align: center; /* Centers the image when stacked */
    }
    .about-text {
        flex-basis: 100%; /* Lets text take full width */
    }

    /* --- Tablet Contact --- */
    .contact-info h2 {
        font-size: 2.5rem;
        text-align: center;
    }    

    .contact-info,
    .contact-form-wrapper {
        text-align: center; 
    }

    /* Center BOTH underlines */
    .contact-subheading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
}


/* ======== Mobile (small) size ======== */
@media (max-width: 768px) {
    .hero {
    /* Replace with the path to your new mobile image */
        background: url('Homepage Images/hero-background-mobile.png') no-repeat center center/cover;
    }
    section {
        padding: 60px 0;
    }
    .container {
        padding: 0 20px; /* Reset mobile padding */
    }

    /* --- Mobile Navigation --- */
    .menu-toggle {
        display: flex;
        z-index: 1002;
        margin-right: 10px; /* Added space from edge */
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -10px; /* Corrected from -10px */
        width: 70%;
        height: 100vh;
        background-color: var(--color-bg-alt);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        padding-top: 70px;
        z-index: 1001;
        border-left: 1px solid #eee;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links li {
        margin-left: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }

    /* --- Mobile Hero Section --- */
    .hero-content {
        /* This resets your right-aligned desktop style */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center; /* Center text on mobile */
    }
    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 0; /* Resets desktop margin */
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        /* This resets your right-aligned desktop style */
        text-align: center;
        margin-top: 40px;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* --- Mobile Grids --- */
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr; /* Stacks all grid items */
    }
    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    /* --- Mobile Album Page --- */
    .album-header h1 { 
        font-size: 2.2rem; 
    }

    /* --- Mobile Lightbox --- */
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 5px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 10px; right: 10px; font-size: 2.5rem; }
    #lightbox-caption { bottom: 10px; }

    /* --- Mobile Contact Page --- */
    .contact-section .container {
        align-items: stretch; /* Fixes centering issue */
    }
    .contact-subheading::after {
        left: 50%; /* Centers the line */
        transform: translateX(-50%);
    }
}