/* 
 * Premium Interior Design Theme 
 * Based on Reference Image
 */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-primary: #0c0c0c;
    /* Deep Forest Green */
    --color-text-on-primary: #e6e8e6;
    --color-accent: #D7FFDB;
    /* Premium Gold */
    --color-accent-hover: #e3b60c;
    --color-bg-light: #f9f9f7;
    /* Warm Off-white */
    --color-text-body: #4b5563;
    --color-text-heading: #111827;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

strong{
    font-weight: 800;
}
/* --- Utilities & Helper Classes --- */
.text-primary-dark {
    color: var(--color-primary);
}

.bg-primary-dark {
    background-color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.bg-accent {
    background-color: var(--color-accent);
}

.fw-800 {
    font-weight: 800;
}

.section-padding {
    padding: 120px 0;
}

.overflow-hidden-rounded {
    overflow: hidden;
    border-radius: 20px;
}

/* --- Buttons --- */
.btn-premium {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}

.btn-premium:hover::before {
    opacity: 0.2;
}

.btn-premium-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.btn-premium-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid #efefef;
    background: #fff;
    color: var(--color-primary);
}



/* --- Navigation --- */
.premium-navbar {
    padding: 24px 0;
    transition: 0.4s ease;
}

.premium-navbar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 12px;
    transition: color 0.3s;
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
    color: #fff;
}

.brand-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero-mosaic {
    position: relative;
    height: 500px;
}

.mosaic-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mosaic-main {
    width: 380px;
    height: 510px;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mosaic-top-left {
    width: 250px;
    height: 250px;
    top: 0;
    left: 0;
    z-index: 1;
}

.mosaic-bottom-right {
    width: 200px;
    height: 200px;
    bottom: 0px;
    right: 20px;
    z-index: 3;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.user-stack img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    margin-left: -15px;
}

.user-stack img:first-child {
    margin-left: 0;
}

/* --- Stats Section --- */
.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--color-text-body);
    margin-top: 5px;
}

/* --- Vision Video --- */
.vision-section {
    background-color: var(--color-primary);
    color: #fff;
}

.video-container {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.play-button-pulse {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button-pulse:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Services List --- */
.service-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 0;
    transition: background-color 0.3s;
}

.service-row:hover .btn-circle {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: rotate(-45deg);
}

.service-img-wrapper {
    height: 160px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* --- Portfolio --- */
.portfolio-card {
    cursor: pointer;
}

.portfolio-img-box {
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img-box img {
    transform: scale(1.05);
}

/* --- Testimonials --- */
.testimonial-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
}

/* --- Contact --- */
.contact-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.04);
}

.form-floating-custom {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
}

.form-floating-custom:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

/* --- Footer --- */
.footer-section {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.6);

}

.footer-section h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

.newsletter-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 100%;
    padding: 10px 0;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Animation Classes (Generic) */
.gsap-reveal {
    visibility: hidden;
}

.cabeza {
    background-color: var(--color-primary);
}

.logo {
    width: 150px;
}
.display-5 {
    font-size: 2.2rem;
    text-transform: none;
}

/* From Uiverse.io by mrhyddenn */ 
button.mas {
  background: #fff;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 180px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
}

span.btn {
  display: inline-block;
  transform: skew(21deg);
}

button.mas::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background:#333;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

button.mas:hover {
  color: #fff;
}

button.mas:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}


@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-mosaic {
        height: 400px;
        margin-bottom: 60px;
    }

    .mosaic-main {
        width: 400px;
        height: 480px;
    }

    .mosaic-top-left {
        width: 280px;
        height: 420px;
    }

    .mosaic-bottom-right {
        width: 150px;
        height: 150px;
    }

    .service-img-wrapper {
        height: 250px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
        .mosaic-main {
        width: 220px;
        height: 260px;
    }

    .mosaic-top-left {
        width: 250px;
        height: 420px;
    }
}
