/* =========================================
   1. IMPORTS & GLOBAL VARIABLES
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Bizantheum:wght@300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme-dark: #122B29;
    --theme-gold: #D6B688;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #393939;
    font-size: 16px;
    line-height: 150%;
}

.container { max-width: 1230px; }


/* =========================================
   2. TYPOGRAPHY & UTILITY
========================================= */
.italiana-font { font-family: 'Italiana', serif; }
.poppins-font  { font-family: "Poppins", Arial, sans-serif; }
.bg-theme-dark { background-color: var(--theme-dark); }
.opacity-50    { opacity: 0.5; }
.opacity-75    { opacity: 0.75; }

h1 { font-size: clamp(40px, 8vw, 96px); font-weight: 400; z-index: 1; }
#services-list h2,
#about-us h2   { font-size: clamp(30px, 4vw, 45px); font-weight: 400; }


/* =========================================
   3. HEADER & NAVIGATION
========================================= */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .d-flex { align-items: center; height: 60px; }
header .left-side { display: flex; align-items: center; }

header .left-side a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
}
header .left-side a:hover { color: rgba(255, 255, 255, 0.8); }
header .left-side svg { width: 16px; height: 16px; stroke: white; opacity: 0.8; }

header .logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 26px;
    z-index: 15;
    transition: all 0.3s ease;
}

header .logo-wrapper::before {
    content: '';
    position: absolute;
    left: -15px; right: -15px; top: -10px; bottom: -10px;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(10px) brightness(0.3);
    background: rgb(0 0 0 / 0%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

header .logo {
    width: 120px;
    height: 120px;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

header.scrolled .logo-wrapper       { top: 12px; }
header.scrolled .logo-wrapper::before { opacity: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
header.scrolled .logo               { width: 50px; height: 50px; }
header .right-side                  { margin-left: auto; }

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0; padding: 0;
    align-items: center;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
header nav ul li a:hover { color: rgba(255, 255, 255, 0.7); }


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }


/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px;
}
.mobile-menu.active { opacity: 1; visibility: visible; height:100vh; }

.mobile-menu-header { margin-bottom: 40px; text-align: center; }

.mobile-contact-full a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    gap: 10px;
}
.mobile-contact-full a:hover { color: rgba(255, 255, 255, 0.8); }

.mobile-nav ul {
    list-style: none;
    padding: 0; margin: 0;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}
.mobile-nav ul li { margin: 20px 0; }

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    padding: 10px;
}
.mobile-nav ul li a:hover { color: rgba(255, 255, 255, 0.7); }

body.menu-open { overflow: hidden; }


/* =========================================
   4. HERO SECTION
========================================= */
.page-hero-banner {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 60px;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

#hero-slider { height: 100vh; position: relative; }

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-slide .container,
.page-hero-banner .container { position: relative; z-index: 2; }

.hero-title {
    font-size: clamp(35px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-hero {
    background: #fff;
    border: 2px solid white;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-hero:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    bottom: 50px;
    right: 50px;
    left: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    padding: 0;
}
.carousel-indicators::before {
    content: '01';
    color: white;
    font-size: 24px;
    font-weight: 300;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}
.carousel-indicators li {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 30px;
}
.carousel-indicators .active { background: #fff; opacity: 1; }
.carousel-indicators[data-active="0"]::before { content: '01'; }
.carousel-indicators[data-active="1"]::before { content: '02'; }
.carousel-indicators[data-active="2"]::before { content: '03'; }
.carousel-indicators[data-active="3"]::before { content: '04'; }
.carousel-control-prev,
.carousel-control-next { display: none; }


/* Section background decorations */
#about-us {
    background-image: url(../images/design-1.png);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: 0 0;
}
#testimonials {
    background-image: url(../images/design-2.png);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: 0 0;
}
#contact {
    background-image: url(../images/design-3.png);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: 100% 0;
}


/* =========================================
   5. ABOUT US SECTION (HOME)
========================================= */
#about-us { position: relative; }

.about-bg-split {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 57%;
    background-color: var(--theme-dark);
    z-index: 1;
}

.about-text-box,
.about-left-img-wrapper,
.about-arch-wrapper,
.ratings,
.video-wrapper { position: relative; z-index: 2; }

.about-left-img-wrapper img { height: 320px; object-fit: cover; border-radius: 4px; }

.about-arch-img {
    height: 650px;
    object-fit: cover;
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.curved-top img { width: 100%; border-radius: 50% 50% 0 0; }

.ratings div {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
}
.ratings div span              { text-align: left; }
.ratings div span.italiana-font { font-size: clamp(24px, 4vw, 45px); }


/* =========================================
   6. VIDEO SECTION
========================================= */
.video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -170px;
}
.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    border-radius: 12px;
    z-index: 2;
    transition: all 0.3s ease;
}
.video-placeholder:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.placeholder-image { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.play-button-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.play-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.video-placeholder:hover .play-icon { transform: scale(1.1); }

.play-circle:hover {
    background: rgba(214, 182, 136, 0.8) !important;
    border-color: rgba(214, 182, 136, 1) !important;
    transform: scale(1.05);
}


/* =========================================
   7. PORTFOLIO
========================================= */
#portfolio { margin-top: 150px; }

.portfolio-card {
    text-decoration: none !important;
    color: #122B29;
    display: block;
    transition: transform 0.4s ease;
}
.portfolio-card:hover { transform: translateY(-10px); }

.portfolio-img-wrapper {
    overflow: hidden;
    border-radius: 4px;
    height: 400px;
    margin-bottom: 15px;
}
.portfolio-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-img-wrapper img { transform: scale(1.05); }

.portfolio-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.portfolio-text h3 { font-size: 20px; font-weight: 400; margin: 0; }
.portfolio-text p  { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #888; }

/* Swiper Portfolio Slider */
.portfolio-swiper { width: 100%; overflow: visible !important; }

.portfolio-swiper .swiper-slide {
    transition: all 0.5s ease-in-out;
    transform: scale(0.85);
    opacity: 0.5;
}
.portfolio-swiper .swiper-slide-active {
    transform: scale(1.1);
    opacity: 1;
    z-index: 2;
}
.portfolio-swiper .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.5s ease-in-out;
}
.portfolio-swiper .swiper-slide-active img { height: 420px; }

.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
    color: var(--theme-dark);
    background: none;
    width: auto; height: auto;
    margin-top: -20px;
}
.portfolio-swiper .swiper-button-next::after,
.portfolio-swiper .swiper-button-prev::after { display: none; }

.portfolio-slider .img-fluid { width: 100%; height: 400px; object-fit: cover; }
.portfolio-slider .slick-current .img-fluid { height: 500px; }
.portfolio-slider .slick-track { display: flex; align-items: center; }

h3.portfolio-title { font-size: clamp(20px, 8vw, 24px); font-weight: 400; }


/* =========================================
   8. SERVICES
========================================= */
.service-block {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    text-decoration: none !important;
}

.service-img-container { width: 100%; height: 100%; }
.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-block:hover .service-img-container img { transform: scale(1.05); }

.service-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.service-caption {
    position: absolute;
    bottom: 30px; left: 30px; right: 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
}
.service-caption h3 {
    font-family: 'Italiana', serif;
    font-size: 1.75rem;
    margin: 0;
    transition: color 0.3s ease;
}
.service-block:hover .service-caption h3 { color: var(--theme-gold); }

.arrow-icon { font-size: 1.5rem; font-weight: 200; transition: transform 0.3s ease; }
.service-block:hover .arrow-icon { transform: translateX(10px); }

/* Legacy service classes (kept for compatibility) */
.service-image-wrapper { height: 400px; position: relative; overflow: hidden; }
.service-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}
.service-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-title  { font-size: clamp(24px, 4vw, 27px); font-weight: 400; }
.service-arrow  { color: #393939; transition: transform 0.3s ease; }
.service-item-link:hover .service-arrow { transform: translateX(5px); }
.service-item-link:hover .service-title { text-decoration: underline; }

.service-content { position: absolute; z-index: 2; left: 28px; bottom: 20px; width: 90%; }


/* =========================================
   9. ELEGANCE BANNER
========================================= */
.elegance-banner {
    background-image: url('../images/elegance.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    /* min-height: 100vh; */
    display: flex;
}

.elegance-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 43, 41, 0.7);
}

.geometric-pattern {
    /* position: absolute; */
    /* top: 50%; left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* width: 80%; */
    /* max-width: 600px;  */
    height: 100%;
    background-image: url('../images/geometric-pattern.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}


/* =========================================
   10. TESTIMONIALS
========================================= */
.testimonial-card {
    border: 1px solid rgba(214, 182, 136, 0.3);
    border-radius: 4px;
    height: 100%;
    background-color: transparent;
    transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(214, 182, 136, 0.6); }


/* =========================================
   11. CONTACT SECTION
========================================= */
.arch-image {
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    height: 800px;
    width: 90%;
    object-fit: cover;
    display: block;
    margin: 0 auto -120px;
}

.custom-input {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    border-radius: 0;
    padding-left: 0;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.custom-input::placeholder { color: #999; }
.custom-input:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: var(--theme-dark);
    background: transparent;
}

.btn-submit {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--theme-dark);
    padding: 5px 0;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--theme-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}
.btn-submit:hover { color: var(--theme-gold); border-bottom-color: var(--theme-gold); }


/* =========================================
   12. FOOTER
========================================= */
footer { padding-top: 120px; }
.footer-logo  { mix-blend-mode: lighten; }
.footer-border { border-color: rgba(255,255,255,0.1) !important; }

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s ease;
}
.footer-links a:hover { opacity: 1; color: var(--theme-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}


/* =========================================
   13. ABOUT PAGE SPECIFIC
========================================= */
.about-hero-banner {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}
.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.about-hero-content { position: relative; z-index: 2; color: white; }

.about-intro-section  { padding: 80px 0; }
.about-intro-text     { max-width: 800px; margin: 0 auto 50px; text-align: center; font-size: 15px; line-height: 1.8; }

.offset-image-left {
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}
.offset-image-right {
    margin-top: -40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}

.team-section { padding: 60px 0 0; background-color: #fff; }

.team-list { list-style: none; padding: 0; margin: 20px 0 0 0; }
.team-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.team-image { width: 100%; border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); object-fit: cover; }

.features-strip { background-color: var(--theme-dark); color: #fff; padding: 280px 0 80px; margin-top: -230px; }

.feature-box { text-align: center; padding: 0 15px; }
.feature-icon-wrapper { margin-bottom: 20px; height: 50px; display: flex; align-items: center; justify-content: center; }
.feature-icon-wrapper svg { width: auto; height: 45px; stroke: var(--theme-gold); fill: none; }

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--theme-gold);
    margin-bottom: 15px;
}
.feature-desc { font-family: 'Poppins', sans-serif; font-size: 13px; line-height: 1.8; opacity: 0.8; }

.about-bottom-section { padding: 80px 0; }
.about-bottom-img { border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); width: 100%; height: 550px; object-fit: cover; }

.about-bottom-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}


/* =========================================
   14. RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .service-image-wrapper { height: 350px; }
}

@media (max-width: 992px) {
    .portfolio-slider .img-fluid{
        height: 300px;
    }
    .portfolio-slider .slick-current .img-fluid{
        height: 400px;
    }
    .service-image-wrapper { height: 300px; }

    header .left-side,
    header .right-side { display: none !important; }
    header .mobile-contact,
    header .mobile-menu-toggle { display: flex !important; }

    header .logo-wrapper { top: 15px; }
    header.scrolled .logo-wrapper { top: 2px; }
    header .logo { width: 60px; height: 60px; }
    header.scrolled .logo { width: 40px; height: 40px; }
    header { padding: 10px 0; }
    header.scrolled { padding: 5px 0; }

    .about-bg-split  { height: 75%; }
    .about-heading   { font-size: 2.5rem !important; }
    .about-arch-img  { height: 450px; margin-top: 40px; }
    .about-left-img-wrapper img { height: 250px; }
    .video-placeholder img { height: 300px !important; }
    .ratings { flex-direction: column; gap: 30px; margin-top: 40px !important; }

    .offset-image-left,
    .offset-image-right { margin-top: 20px; }
    .about-bottom-img  { height: 400px; margin-bottom: 30px; }
    .feature-box       { margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .team-list li{
        color: #000 !important;
    }
    .team-image{
        height: auto !important;
    }
    .service-image-wrapper { height: 280px; }

    header .logo { width: 50px; height: 50px; }
    header.scrolled .logo { width: 35px; height: 35px; }
    header .logo-wrapper { top: 10px; }
    header.scrolled .logo-wrapper { top: 2px; }

    .hero-title    { margin-bottom: 1rem; }
    .hero-subtitle { margin-bottom: 2rem; }
    .btn-hero      { padding: 10px 30px; font-size: 12px; }

    .carousel-indicators { bottom: 30px; right: 20px; }
    .carousel-indicators::before { font-size: 18px; margin-right: 15px; }
    .carousel-indicators li { width: 40px; }

    .video-placeholder { height: 300px; border-radius: 8px; }
    .placeholder-image { border-radius: 8px; }
    .play-icon { width: 60px; height: 60px; }
    .video-placeholder::before { border-radius: 8px; }

    .portfolio-swiper .swiper-slide { transform: scale(0.9); opacity: 0.6; }
    .portfolio-swiper .swiper-slide-active { transform: scale(1); }
    .portfolio-swiper .swiper-slide img,
    .portfolio-swiper .swiper-slide-active img { height: 350px; }

    .arch-image { height: 400px; width: 100%; margin-bottom: 0; border-radius: 8px; }

    .about-bottom-stats { flex-wrap: wrap; gap: 15px; justify-content: center; text-align: center; }
}

@media (max-width: 576px) {
    .service-image-wrapper { height: 250px; }
    #portfolio .portfolio-slider-wrapper, #testimonials .testimonial-slider-wrapper{
        padding: 0px !important;
    }
}

@media (max-width: 480px) {
    .video-placeholder { height: 250px; border-radius: 6px; }
    .placeholder-image { border-radius: 6px; }
    .play-icon { width: 50px; height: 50px; }
    .video-placeholder::before { border-radius: 6px; }
}

/* =========================================
   12. QUOTE MODAL POPUP
========================================= */
.quote-modal .modal-content {
    border-radius: 12px;
}

.quote-header {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Custom "Close X" Button */
.close-quote {
    top: 25px;
    right: 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 6px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-quote:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Form Inputs */
.quote-form label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.quote-form .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    box-shadow: none;
    transition: 0.3s ease;
}

.quote-form .form-control:focus {
    border-color: var(--theme-dark);
}

/* Custom Checkboxes */
.quote-form .custom-control-label {
    font-size: 14px;
    color: #555;
    padding-top: 3px;
    cursor: pointer;
}

.quote-form .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--theme-dark);
    border-color: var(--theme-dark);
}

/* Submit Button */
.btn-quote-submit {
    background: transparent;
    border: 1px solid var(--theme-dark);
    color: var(--theme-dark);
    padding: 12px 45px;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-quote-submit:hover {
    background: var(--theme-dark);
    color: #fff;
}

li.home-page{
    display: none;
}
@media (max-width: 992px) {
    li.home-page{
        display: block;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .quote-header h2 { font-size: 2.5rem !important; }
    .quote-header { height: 140px; }
}
/* Creates space on the left and right for the arrows to sit outside */
.portfolio-slider-wrapper,
.testimonial-slider-wrapper {
    padding: 0 40px !important;
    position: relative;
}

/* Absolutely positions the arrows and removes all default button styling (borders/backgrounds) */
.portfolio-slider-wrapper .slick-prev,
.portfolio-slider-wrapper .slick-next,
.testimonial-slider-wrapper .slick-prev,
.testimonial-slider-wrapper .slick-next {
    position: absolute !important;
    top: 40% !important; /* Centers arrows relative to the image, ignoring the text below */
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 100 !important;
    color: #122B29 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-slider-wrapper .slick-prev:hover,
.portfolio-slider-wrapper .slick-next:hover,
.testimonial-slider-wrapper .slick-prev:hover,
.testimonial-slider-wrapper .slick-next:hover {
    opacity: 1;
    color: #D6B688 !important; /* Gold hover effect */
}

.portfolio-slider-wrapper .slick-prev,
.testimonial-slider-wrapper .slick-prev {
    left: -25px !important;
}
.testimonial-slider-wrapper .slick-prev{
    filter: invert(1);
}
.portfolio-slider-wrapper .slick-next,
.testimonial-slider-wrapper .slick-next {
    right: -25px !important;
}
.testimonial-slider-wrapper .slick-next{
    filter: invert(1);
}

/* Removes the default ugly Slick dots/fonts */
.portfolio-slider-wrapper .slick-prev::before,
.portfolio-slider-wrapper .slick-next::before,
.testimonial-slider-wrapper .slick-prev::before,
.testimonial-slider-wrapper .slick-next::before {
    display: none !important;
}

/* Removes blue outline when clicking */
.portfolio-slider-wrapper .slick-prev:focus,
.portfolio-slider-wrapper .slick-next:focus,
.testimonial-slider-wrapper .slick-prev:focus,
.testimonial-slider-wrapper .slick-next:focus {
    outline: none !important;
}

.portfolio-single-hero {
            height: 70vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }
        .portfolio-single-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
        }
        .gallery-img-wrapper {
            overflow: hidden;
            border-radius: 4px;
            margin-bottom: 30px;
            cursor: pointer;
        }
        .gallery-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-img-wrapper:hover img {
            transform: scale(1.05);
        }
        .portfolio-nav-link {
            text-decoration: none !important;
            color: #122B29;
            transition: color 0.3s ease;
        }
        .portfolio-nav-link:hover {
            color: #D6B688;
        }
        .project-meta-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #D6B688;
            margin-bottom: 5px;
            font-weight: 500;
        }
        .project-meta-info {
            font-size: 15px;
            color: #333;
        }