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

body {
    font-family: "Inter", sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #000000;
}

/* ✅ ALL HEADER AND NAVIGATION STYLES REMOVED */
/* ✅ These are now in header-styles.css */

/* Hero Image */
.hero-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #000000;
}

.hero-image {
    width: 1600px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Content Area */
.content-area {
    background-color: #000000;
    padding: 80px 20px;
}

.content-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Title - Full Width */
.section-title-row {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 6px solid #24daf2;
    position: relative;
}

.section-title-row::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 230px;
    height: 6px;
    background-color: #ffffff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: 1.5px;
}

/* Content Row - Two Columns */
.content-row {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.content-column {
    flex: 1;
}

.content-text {
    background-color: rgba(0, 0, 0, 0.87);
    padding: 40px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
}

.content-text h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0.5px;
}

.content-text p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 15px;
    font-weight: 400;
}

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

.content-text hr {
    border: none;
    border-top: 2px solid #4cb7cf;
    margin: 20px 0;
}

/* Photo Container with Hover Effect */
.photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(36, 218, 242, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.photo-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(36, 218, 242, 0.6);
    z-index: 10;
}

.photo-container:hover img {
    transform: scale(1.1);
}

/* Photo Overlay on Hover */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(36, 218, 242, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.photo-container:hover .photo-overlay {
    opacity: 1;
}

/* Lightbox Modal for Photos */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 300;
}

.lightbox-close:hover {
    color: #24daf2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
#footer {
    background-color: #ffffff;
    padding: 20px 0;
    border-top: 3px solid #4cb7cf;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    height: 39px;
}

.footer-info {
    text-align: right;
    color: #050505;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-info p {
    margin: 5px 0;
}

.footer-phone {
    font-size: 14px;
    font-weight: 600;
}

/* Faded "CLICK" label over photos */
.photo-overlay::after {
    content: "CLICK";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 5vw, 64px);
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.511);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0.35;
    /* faint by default */
    transform: translateY(8px);
    /* tiny slide-in on hover */
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    /* keep clicks going to the image */
}

/* brighten on hover and keyboard focus */
.photo-container:hover .photo-overlay::after,
.photo-container:focus .photo-overlay::after {
    opacity: 0.85;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 1200px) {

    .container,
    .content-inner,
    .footer-inner {
        max-width: 100%;
    }

    /* ✅ ALL MOBILE MENU STYLES REMOVED */
    /* ✅ These are now in header-styles.css */

    .content-row {
        flex-direction: column;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

/* Even smaller screens */
@media (max-width: 600px) {
    /* ✅ Mobile menu styles removed - in header-styles.css */
}