@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-gold: #C5A02B;
    --gold-light: #DFBF6D;
    --gold-dark: #A6831F;
    --dark-bg: #111111;
    --dark-accent: #1A1A1A;
    --light-bg: #F9F9F9;
    --text-dark: #222222;
    --text-muted: #666666;
    --white: #FFFFFF;
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
.font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Bootstrap Display Overrides for more elegant balance */
.display-1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.display-2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.display-3 {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
}

.display-4 {
    font-size: 1.8rem;
    font-weight: 700;
}

.display-5 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Navbar Customization */
.navbar {
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.navbar.scrolled {
    background: var(--dark-bg) !important;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--primary-gold);
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-slider .swiper-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 25px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.trust-item {
    text-align: center;
}

.trust-item h4 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0;
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-15px);
    color: var(--white);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover i,
.service-card:hover p,
.service-card:hover .btn-read-more {
    color: var(--white) !important;
}

.service-card:hover .btn-read-more {
    border-color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: #000000;
    opacity: 0.9;
}

.service-card i {
    font-size: 45px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    display: block;
    transition: var(--transition-smooth);
}

/* Portfolio Grid */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.portfolio-img {
    height: 380px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transition: var(--transition-smooth);
}

.portfolio-overlay h4 {
    font-size: 1.2rem;
}

/* Why Choose Us */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 18px;
}

/* Process Slider */
.process-step {
    text-align: center;
    padding: 15px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    font-weight: 800;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Buttons */
.btn-gold {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    font-size: 13px;
}

.btn-gold:hover {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 28px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    font-size: 13px;
    border-radius: 4px;
}

/* Footer Styles */
footer {
    background: #0A0A0A;
    padding-top: 80px;
    color: var(--white);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    opacity: 1;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    background: #000000;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--white);
    opacity: 0.8;
    font-size: 13px;
}

.text-muted {
    color: var(--white) !important;
    opacity: 1;
}





.text-black {
    color: #000000 !important;
}

/* Before & After Slider */
.ba-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-after {
    width: 50%;
    z-index: 2;
    border-right: 3px solid var(--primary-gold);
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 3;
}

.ba-before .ba-label {
    right: 20px;
}

.ba-after .ba-label {
    left: 20px;
}

/* Design Styles Grid */
.style-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.style-card:hover img {
    transform: scale(1.1);
}

.style-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    transition: var(--transition-smooth);
}

/* Featured Projects / Portfolio */
.portfolio-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 1;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
}

.portfolio-grid-staggered {
    margin-top: 50px;
}

.staggered-up {
    transform: translateY(-30px);
}

.staggered-down {
    transform: translateY(30px);
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-premium);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #000;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.85;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover img {
    transform: scale(1.15);
    opacity: 0.6;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-category {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.portfolio-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.portfolio-action {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    transform: rotate(-45deg);
    opacity: 0;
}

.portfolio-item:hover .portfolio-action {
    opacity: 1;
    transform: rotate(0);
}


.portfolio-view-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    transform: rotate(-45deg);
    opacity: 0;
}

.portfolio-item:hover .portfolio-view-btn {
    opacity: 1;
    transform: rotate(0);
}

.portfolio-view-btn:hover {
    background: white;
    color: var(--primary-gold);
    transform: scale(1.1);
}


.portfolio-action {
    display: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 991px) {

    .staggered-up,
    .staggered-down {
        transform: none;
    }

    .portfolio-item {
        height: 400px;
    }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-bg), #222);
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-gold);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
}

/* Team Section */
.team-card {
    text-align: center;
    transition: var(--transition-smooth);
}

.team-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.team-img-wrapper img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
}

/* Blog Section */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 100%;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-content p {
    color: #000000 !important;
    opacity: 0.85;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

/* Premium Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.btn-read-more i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

.process-step p {
    color: #000000 !important;
}

/* Custom Utilities */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-75 {
    opacity: 0.75;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .ba-container {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }
}

/* Premium Services Page Additions */
.service-card-premium {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.1) !important;
}

.service-card-premium img {
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-premium:hover img {
    transform: scale(1.04);
}

.service-card-premium .btn-dark {
    background-color: #111;
    color: #fff;
    transition: all 0.4s ease;
}

.service-card-premium .btn-dark:hover {
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
    color: #fff !important;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.05) !important;
    transition: all 0.4s ease;
}

.card img {
    transition: all 0.8s ease;
}

.card:hover img {
    transform: scale(1.05);
}