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

html {
    scroll-behavior: smooth;
}

body {
    background: #F4F4F4; 
    font-family: "Inter", sans-serif;
}

header {
    background: rgba(0, 0, 0, 0.7);
    color: #EFEFEF;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #EFEFEF;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #EFEFEF;
    margin: 7.7px;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #EFEFEF;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.hero p {
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    background: #C69918;
    color: #FDFDFD;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
    outline: none;
    border-radius: 8px;
}

.btn:hover {
    background: #e4b430;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    flex-wrap: wrap;
}

.photo-container {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.photo-container img {
    width: 70%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
}

.section-title {
    text-align: center;
    margin: 60px 0 40px 0;
}

.section-title h2 {
    font-size: 2rem;
    color: #000000;
}


.card {
    flex: 1;
    max-width: 50%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    padding: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease-in-out;
}

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

.card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card p {
    font-size: 1rem;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px;
    flex-wrap: wrap;
    background: #f7f7f7;
}

.feature-card {
    flex: 1;
    max-width: 30%;
    background: #fff;
    text-align: center;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.feature-card i {
    font-size: 2rem;
    color: #181818;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.wide-image {
    width: 100%;              /* Stretch across the page */
    display: flex;
    justify-content: center;  /* Center the image container */
    margin: 60px 0;           /* Space above and below */
}

.wide-image img {
    width: 90%;               /* Leaves space on left/right */
    max-width: 1400px;        /* Optional max size */
    height: auto;             /* Keep aspect ratio */
    display: block;
}

.contact {
    padding: 40px;
    text-align: center;
    background: #f7f7f7;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    display: inline-block;
    background: #C69918;
    color: #FDFDFD;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
    border-color: none;
    border: none;
    color: #FDFDFD;
    border-radius: 8px;
}

.contact button:hover {
    background: #e4b430;
}


a {
    color: #fff;
    text-decoration: none;
}

footer {
    background: #181818;
    color: #EFEFEF;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo img {
    max-width: 200px;
}

.contact-info {
    text-align: left;
    flex: 1;
}

.contact-info p {
    font-size: 1rem;
    margin: 5px;
}

.contact-info p i {
    margin-right: 5px;
}

.map {
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.copyright {
    margin-top: 20px;
    text-align: center;
}

.feature-list {
    list-style: none;          /* Remove default bullets */
    padding: 0;
    margin: 20px 0 0 0;         /* Space above list */
    font-size: 1.1rem;
    color: #333;
}

.feature-list li {
    position: relative;
    padding-left: 25px;        /* Space for custom bullet */
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-list li::before {
    content: "•";              /* Custom bullet */
    position: absolute;
    left: 0;
    color: #C69918;            /* Accent color to match theme */
    font-size: 1.4rem;
    line-height: 1;
}

/* === Alternating Sections === */
.alt-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.alt-text {
    flex: 1;
    color: #181818;
}

.alt-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #C69918; /* Accent color to match theme */
}

.alt-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.alt-image {
    flex: 1;
}

.alt-image img {
    width: 100%;
    height: auto;
    max-height: 350px;  /* Keeps images balanced */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* === Reverse order for alternating layout === */
.alt-section.reverse {
    flex-direction: row-reverse;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .alt-section,
    .alt-section.reverse {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    /* Force image to appear first on mobile */
    .alt-section .alt-image,
    .alt-section.reverse .alt-image {
        order: -1;
    }

    .alt-text {
        margin-bottom: 20px;
    }

    .alt-image img {
        max-height: 250px;
    }
}


/* === Image LEFT / Text RIGHT Section === */
.img-left-text-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.iltr-image {
    flex: 1;
}

.iltr-image img {
    width: 100%;
    max-height: 350px;      /* Keeps image height balanced */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.iltr-text {
    flex: 1;
    color: #181818;
}

.iltr-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #C69918; /* Accent color to match theme */
}

.iltr-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.iltr-text .btn {
    display: inline-block;
    background: #C69918;
    color: #FDFDFD;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.iltr-text .btn:hover {
    background: #e4b430;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .img-left-text-right {
        flex-direction: column;    /* Stack image and text */
        text-align: center;
        padding: 40px 5%;
    }
    
 /* Force image to appear first on mobile */
    .img-left-text-right .iltr-image {
        order: -1;
    }
    .iltr-text {
        margin-top: 20px;
    }

    .iltr-image img {
        max-height: 250px;
    }
}


@media (max-width: 768px) {
    header {
        padding: 10px 10px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: block;
    }

    .burger.active + .nav-links {
        display: flex;
    }

    .content {
        flex-direction: column;
        padding: 20px;
    }

    .photo-container {
        order: 2;
        width: 100%;
        padding: 10px;
        max-width: 90%; /* Adjust max-width for mobile */
    }

    .photo-container img {
        width: 100%;
        height: auto;
    }

    .card {
        order: 1;
        margin-bottom: 20px;
        max-width: 90%;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        max-width: 90%;
    }

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

    .footer-logo {
        margin: 0 0 20px;
    }

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

    .map {
        max-width: 100%;
        margin-top: 20px;
    }

    .hero h1 {
    font-size: 2em; /* smaller text for mobile */
    line-height: 1.3; /* optional: improves spacing */
}

.hero p {
    font-size: 0.875em; /* optional: slightly smaller paragraph */
}

/* Left-align feature lists on mobile */
.alt-text .feature-list,
.iltr-text .feature-list {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}


    @media (max-width: 768px) {
    .wide-image img {
        width: 95%;          /* Slightly wider for mobile */
        max-height: 200px;   /* Reduce height further on mobile */
    }
}
}