/* -------- General -------- */
body {
    font-family: "Arial", sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #343a40;
}

/* Global color setup */
:root {
    --orange: #FFA203;
    --orange-light: #FFB23D;
    --text-dark: #343a40;
    --text-light: #f8f8f8;
}

/* -------- Navbar -------- */
.navbar {
    background: linear-gradient(to bottom, #fff 0%, #FFF4E5 100%) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 20px 0;
}
.navbar-brand img { height: 52px; margin-right: 8px; }
.navbar-brand span { font-size: 25px; font-weight: 700; color: var(--text-dark) !important; }
.nav-link { color: var(--text-dark) !important; font-size: 18px; padding: 10px 18px !important; transition: 0.3s; }
.nav-link:hover, .navbar-nav .active .nav-link { color: var(--orange) !important; }

/* -------- Hero Section -------- */
.hero-container { position: relative; }
.hero-container img { width:100%; height:85vh; object-fit:cover; }
.hero-text {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align:center;
    padding:30px 50px;
    border-radius:12px;
    background:rgba(0,0,0,0.35);
    backdrop-filter: blur(3px);
}
.hero-text h1 { font-size:3.3rem; font-weight:700; color:var(--orange); text-shadow: 1px 2px 6px rgba(0,0,0,0.6); }
.hero-text h2 { font-size:1.4rem; color:var(--text-light); opacity:0.95; }

/* -------- About Section -------- */
.about-simple { max-width:1150px; position:relative; padding:70px 15px; }
.about-simple::before {
    content:"";
    position:absolute;
    top:0; left:-5%;
    width:60%; height:100%;
    background: rgba(255,170,50,0.12);
    filter: blur(40px);
    border-radius:200px;
    z-index:-1;
}
.section-title { font-size:2.4rem; font-weight:700; color:var(--orange); margin-bottom:22px; }
.section-title::after { content:""; display:block; width:100%; max-width:280px; height:4px; background:var(--orange); border-radius:3px; margin-top:10px; }
.about-simple .lead { font-size:1.18rem; margin-bottom:15px; color:var(--text-dark); font-weight:500; }
.about-simple p { color:#555; font-size:1.05rem; line-height:1.65; }
.about-img {
    width:100%;
    border-radius:14px;
    object-fit:cover;
    box-shadow:0 6px 14px rgba(0,0,0,0.12);
    cursor:pointer;
    transition:0.3s;
}
.about-img:hover { transform:scale(1.02); }

/* -------- Gallery Page ONLY -------- */
.gallery-container {
    max-width: 1150px;
    margin: 50px auto;
    padding: 0 15px;
    position: relative;
}

/* Decorative floating circles */
.gallery-container .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

/* Original circles */
.gallery-container .circle1 { width: 300px; height: 300px; background: var(--orange); top: -50px; left: -50px; }
.gallery-container .circle2 { width: 200px; height: 200px; background: var(--orange-light); bottom: -30px; right: -40px; }
.gallery-container .circle3 { width: 180px; height: 180px; background: var(--orange); top: 100px; right: -60px; }
.gallery-container .circle4 { width: 120px; height: 120px; background: var(--orange-light); bottom: 150px; left: -40px; }
.gallery-container .circle5 { width: 220px; height: 220px; background: var(--orange); top: 250px; left: 50%; transform: translateX(-50%); }
.gallery-container .circle6 { width: 100px; height: 100px; background: var(--orange-light); top: 400px; right: 20%; }

/* Extra circles for richer background */
.gallery-container .circle7  { width: 60px; height: 60px; background: var(--orange); top: 200px; left: 20%; }
.gallery-container .circle8  { width: 90px; height: 90px; background: var(--orange-light); top: 50px; right: 25%; }
.gallery-container .circle9  { width: 130px; height: 130px; background: var(--orange); bottom: 250px; left: 10%; }
.gallery-container .circle10 { width: 50px; height: 50px; background: var(--orange-light); bottom: 100px; right: 35%; }
.gallery-container .circle11 { width: 160px; height: 160px; background: var(--orange); top: 300px; left: 75%; }
.gallery-container .circle12 { width: 70px; height: 70px; background: var(--orange-light); top: 150px; left: 40%; }
.gallery-container .circle13 { width: 120px; height: 120px; background: var(--orange); bottom: 50px; left: 60%; }
.gallery-container .circle14 { width: 80px; height: 80px; background: var(--orange-light); bottom: 200px; right: 15%; }
.gallery-container .circle15 { width: 200px; height: 200px; background: var(--orange); top: 50px; left: 60%; }

/* Category titles */
.gallery-container .category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    margin: 60px 0 30px 0;
    text-align: center;
    position: relative;
}
.gallery-container .category-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: var(--orange);
    margin: 10px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Gallery Grid */
.gallery-container .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-container .image-grid a {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}
.gallery-container .image-grid a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Animation */
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.gallery-container .image-grid a:nth-child(1) { animation-delay: 0.1s; }
.gallery-container .image-grid a:nth-child(2) { animation-delay: 0.2s; }
.gallery-container .image-grid a:nth-child(3) { animation-delay: 0.3s; }
.gallery-container .image-grid a:nth-child(4) { animation-delay: 0.4s; }
.gallery-container .image-grid a:nth-child(5) { animation-delay: 0.5s; }

/* Hover effect */
.gallery-container .image-grid a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-container .image-grid a:hover::before { opacity: 0.25; }
.gallery-container .image-grid a:hover img { transform: scale(1.05); filter: brightness(0.9); }

/* Image captions */
.gallery-container .image-grid a span {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-container .image-grid a:hover span { opacity: 1; }

/* -------- Responsive -------- */
@media(max-width:768px){
    .gallery-container .category-title { font-size: 1.8rem; margin: 50px 0 20px 0; }
    .gallery-container .image-grid a img { height: 180px; }

    /* Adjust circles */
    .gallery-container .circle1 { width: 200px; height: 200px; top: -30px; left: -30px; }
    .gallery-container .circle2 { width: 150px; height: 150px; bottom: -20px; right: -20px; }
    .gallery-container .circle3 { width: 120px; height: 120px; top: 80px; right: -40px; }
    .gallery-container .circle4 { width: 90px; height: 90px; bottom: 100px; left: -30px; }
    .gallery-container .circle5 { width: 150px; height: 150px; top: 180px; left: 50%; transform: translateX(-50%); }
    .gallery-container .circle6 { width: 80px; height: 80px; top: 300px; right: 10%; }

    /* Extra circles responsive adjustments */
    .gallery-container .circle7, .gallery-container .circle8,
    .gallery-container .circle9, .gallery-container .circle10,
    .gallery-container .circle11, .gallery-container .circle12,
    .gallery-container .circle13, .gallery-container .circle14,
    .gallery-container .circle15 { display: none; }
}

/* -------- Footer (navbar-inspired) -------- */
footer {
    background: linear-gradient(to bottom, #fff 0%, #FFF4E5 100%);
    box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
    color: var(--text-dark);
    padding: 40px 20px;
    font-size: 16px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1150px;
    gap: 30px;
    margin: 0 auto;
}

.footer-item {
    flex: 1;
    min-width: 220px;
}

.footer-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--orange);
    border-bottom: 2px solid rgba(255,170,50,0.5);
    padding-bottom: 5px;
}

.footer-item p,
.footer-item a {
    font-size: 14px;
    color: var(--text-dark);
    margin: 5px 0;
    text-decoration: none;
    line-height: 1.5;
}

.footer-item a:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* Responsive footer */
@media(max-width:768px){
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-item {
        margin: 15px 0;
    }
}
/* -------- Language Button Effect -------- */
.lang-flag {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    border-radius: 4px;
}

.lang-flag:hover {
    transform: scale(1.1);
    opacity: 1;
}

.lang-flag.active {
    border: 2px solid var(--orange);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: scale(1.1);
    opacity: 1;
}

/* -------- Responsive -------- */
@media(max-width:768px){
    .gallery-container .category-title { font-size: 1.8rem; margin: 50px 0 20px 0; }
    .gallery-container .image-grid a img { height: 180px; }
    .gallery-container .circle1 { width: 200px; height: 200px; top: -30px; left: -30px; }
    .gallery-container .circle2 { width: 150px; height: 150px; bottom: -20px; right: -20px; }
    .gallery-container .circle3 { width: 120px; height: 120px; top: 80px; right: -40px; }
    .gallery-container .circle4 { width: 90px; height: 90px; bottom: 100px; left: -30px; }
    .gallery-container .circle5 { width: 150px; height: 150px; top: 180px; left: 50%; transform: translateX(-50%); }
    .gallery-container .circle6 { width: 80px; height: 80px; top: 300px; right: 10%; }
    .footer-container { flex-direction: column; align-items: center; }
    .footer-item { text-align:center; margin: 15px 0; }
}

/* === SECTION TITLE GOLD LINE FIX === */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: gold;
    border-radius: 2px;
}

/* === SERVICE CARD GRID UNIFICATION === */
.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Each card will be same height */
.services-row .card {
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Image fixed size uniform */
.services-row img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Keep equal spacing inside cards */
.services-row h4 {
    font-size: 18px;
    margin-top: 15px;
    font-weight: 600;
}

.services-row p {
    flex-grow: 1;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Hover effect */
.services-row .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, .3);
}

/* RESPONSIVENESS */
@media(max-width:1200px){
    .services-row .col-lg-2 { flex-basis: 18%; }
}
@media(max-width:992px){
    .services-row .col-lg-2 { flex-basis: 30%; }
}
@media(max-width:768px){
    .services-row .col-lg-2 { flex-basis: 45%; }
}
@media(max-width:500px){
    .services-row .col-lg-2 { flex-basis: 85%; }
}

/* === Contact Page Floating Circles === */
body.contact-page {
    position: relative;
    overflow-x: hidden;
}

/* Decorative floating circles */
body.contact-page .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

/* Original circles */
body.contact-page .circle1 { width: 280px; height: 280px; background: var(--orange); top: -80px; left: 10%; }
body.contact-page .circle2 { width: 180px; height: 180px; background: var(--orange-light); bottom: 20px; right: 15%; }
body.contact-page .circle3 { width: 200px; height: 200px; background: var(--orange); top: 150px; right: 5%; }
body.contact-page .circle4 { width: 140px; height: 140px; background: var(--orange-light); bottom: 180px; left: 5%; }

/* Extra decorative circles */
body.contact-page .circle5  { width: 200px; height: 200px; background: var(--orange); top: 300px; left: 50%; transform: translateX(-50%); }
body.contact-page .circle6  { width: 120px; height: 120px; background: var(--orange-light); top: 450px; right: 25%; }
body.contact-page .circle7  { width: 100px; height: 100px; background: var(--orange-light); top: 80px; left: 65%; }

