/* ========================================
   DREAME FAME Website - Custom Styles
   ======================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --primary: #1a3c6e;
    --primary-dark: #0f2a52;
    --primary-light: #2a5ca8;
    --accent: #e8a020;
    --accent-hover: #d4900e;
    --dark: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-dark);
    position: relative;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-title.text-white {
    color: var(--white);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 5px;
}

.section-subtitle-small {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 60, 110, 0.4);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ---------- TOP BAR (legacy - unused) ---------- */

.city-dropdown {
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
    padding: 2px 12px;
    background: transparent;
    letter-spacing: 0.5px;
}

.city-dropdown:hover,
.city-dropdown:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- NAVBAR ---------- */
#mainNav {
    background: var(--primary);
    padding: 0;
    transition: var(--transition);
    z-index: 1040;
}

#mainNav .container-fluid {
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
}

/* Top Row: Phone + City */
.nav-top-row {
    background: var(--primary-dark);
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.3px;
}

.nav-top-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
}

.nav-top-link:hover {
    color: var(--accent) !important;
}

.nav-top-row .dropdown-menu {
    background: #fff;
    min-width: 160px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 8px;
}

.nav-top-row .dropdown-menu .dropdown-item {
    color: #333 !important;
    font-size: 0.85rem;
    padding: 8px 16px;
}

.nav-top-row .dropdown-menu .dropdown-item:hover {
    background: var(--primary);
    color: #fff !important;
}

/* Bottom Row: Logo + Nav links */
#mainNav .d-flex.w-100 {
    padding: 6px 0;
    justify-content: center;
}

#mainNav .navbar-collapse {
    flex-grow: 0;
}

/* Scrolled state */
#mainNav.scrolled {
    background: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#mainNav.scrolled .nav-top-row {
    display: none !important;
}

#mainNav.scrolled .d-flex.w-100 {
    padding: 4px 0;
}

#mainNav.scrolled .navbar-brand .brand-logo {
    height: 60px;
}

/* Brand / Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-right: 10px;
}

.navbar-brand .brand-logo {
    height: 100px;
    width: auto;
    border-radius: 4px;
    transition: height 0.3s ease;
}

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px 14px;
    font-size: 0.88rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link:not(.dropdown-toggle):not(.btn-login)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.navbar-nav .nav-link:not(.dropdown-toggle):not(.btn-login):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle):not(.btn-login).active::after {
    width: 60%;
}

/* Override for dropdown toggles - Bootstrap adds its own ::after for caret */
.navbar-nav .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.3em;
    vertical-align: 0.2em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.btn-login {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 6px 22px !important;
    margin-left: 10px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent) !important;
    transition: var(--transition);
}

.btn-login:hover {
    background: transparent !important;
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.btn-login::after {
    display: none !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu .dropdown-item {
    color: #333;
    padding: 8px 20px;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 24px;
}

/* Mobile navbar tweaks */
@media (max-width: 991.98px) {
    #mainNav .d-flex.w-100 {
        padding: 8px 0;
    }
    .navbar-brand .brand-logo {
        height: 50px;
    }
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 15px;
        border-radius: 0 0 12px 12px;
        margin-top: 10px;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .btn-login {
        display: inline-block;
        margin: 10px 0 0 0;
        text-align: center;
    }
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border-radius: 0;
    }
    .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.85) !important;
        padding-left: 15px;
    }
    .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent) !important;
    }
}

/* ---------- HERO CAROUSEL ---------- */
#heroCarousel {
    position: relative;
}

.hero-slide {
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-1 { background: url('../images/hero-slide-1.png') center/cover no-repeat; }
.slide-2 { background: linear-gradient(135deg, #1b1b3a 0%, #2a5ca8 50%, #0f2a52 100%); }

.slide-1 .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slide-1 .hero-content h4,
.slide-1 .hero-content h2,
.slide-1 .hero-tagline {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.9);
}
.slide-3 { background: linear-gradient(135deg, #0d1b2a 0%, #1b4d89 40%, #e67e22 100%); }
.slide-4 { background: url('../images/hero-slide-4.png') center/cover no-repeat; }
.slide-5 { background: url('../images/hero-slide-5.png') center/cover no-repeat; }

.slide-5 .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slide-5 .hero-content h4,
.slide-5 .hero-content h2,
.slide-5 .hero-tagline {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slide-4 .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slide-4 .hero-content h4,
.slide-4 .hero-content h2,
.slide-4 .hero-tagline {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
}

.hero-content h4 {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

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

.hero-tagline {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-content h5 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.btn-hero {
    padding: 14px 40px;
    font-size: 1rem;
    background: var(--accent);
    border-color: var(--accent);
    margin-top: 20px;
}

.btn-hero:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: scale(1.05);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ---------- TRUST BANNER ---------- */
.trust-banner {
    background: var(--primary-dark);
    padding: 18px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--accent);
}

.trust-item span {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.text-accent-highlight {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
}

.text-accent-highlight i {
    margin-right: 5px;
}

@media (max-width: 767.98px) {
    .trust-item {
        border-right: none;
        padding: 6px 10px;
        font-size: 0.78rem;
    }
    .trust-item span {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 15px;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

/* ---------- EXPERIENCE CENTERS ---------- */
#experience-centers {
    background: var(--white);
}

.city-card {
    display: block;
    padding: 25px 15px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-dark);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
}

.city-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 1.3rem;
}

.city-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.city-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ---------- PACKAGES SECTION ---------- */
#packages {
    background: var(--light-bg);
}

.couple-img {
    max-height: none;
    width: 100%;
    border-radius: var(--radius);
    margin-top: 200px;
    position: relative;
    top: 80px;
}

.package-tabs {
    display: flex;
    width: 100%;
}

.package-tabs .nav-item {
    flex: 1;
}

.package-tabs .nav-link {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    padding: 12px 10px;
    margin: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    width: 100%;
    text-align: center;
}

.package-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.package-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.package-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Package Grid Cards */
.package-card-grid {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-card-grid:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.package-card-grid.popular {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.package-card-grid.popular:hover {
    border-color: var(--accent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.package-card-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.package-card-grid .package-price {
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.package-card-grid .price-symbol {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.package-card-grid .price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.package-card-grid .price-unit {
    display: block;
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
}

.package-features-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    flex-grow: 1;
    text-align: left;
}

.package-features-grid li {
    padding: 5px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
}

.package-features-grid li i {
    color: #28a745;
    margin-right: 6px;
    font-size: 0.7rem;
}

.package-features-grid li.feature-category {
    background: #f0f4f8;
    padding: 6px 8px;
    margin-top: 8px;
    border-bottom: none;
    border-radius: 4px;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.package-features-grid li.feature-category:first-child {
    margin-top: 0;
}

.package-features-grid li.feature-category i {
    color: var(--primary);
    font-size: 0.75rem;
}

.package-price {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.package-price strong {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.package-features li i {
    color: #28a745;
    margin-right: 10px;
}

/* ---------- COST CALCULATOR ---------- */
.calculator-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.calculator-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.calculator-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---------- COMPLETED SITES ---------- */
.site-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.site-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.site-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.site-gallery-item:hover img {
    transform: scale(1.08);
}

.placeholder-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e8ecf1 0%, #d1d9e6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8a9bb5;
    gap: 8px;
}
.placeholder-img i {
    font-size: 2.5rem;
    opacity: 0.5;
}
.placeholder-img span {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- APP SECTION ---------- */
#app-section {
    background: var(--light-bg);
}

.app-mockup {
    max-height: 450px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.app-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.app-features li {
    padding: 10px 0;
    font-size: 1.05rem;
}

.app-features li i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
    background: linear-gradient(135deg, #0f2a52 0%, #1a3c6e 30%, #e8a020 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: inline;
    color: var(--accent);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-item p {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* ---------- WHY DREAME FAME HIGHLIGHTS ---------- */
.highlight-card {
    padding: 30px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--accent)) 1;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.highlight-card i {
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ---------- SERVICES ---------- */
.services-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1b1b3a 50%, #2a5ca8 100%);
}

.service-card-glow {
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: 100%;
    color: #fff;
}

.service-card-glow:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(232, 160, 32, 0.3);
}

.service-card-glow h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-card-glow p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #f39c12);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 35px;
    box-shadow: 0 5px 20px rgba(232, 160, 32, 0.4);
    transition: var(--transition);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(232, 160, 32, 0.5);
    color: #fff;
}

.service-card {
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------- OFFICE GALLERIES ---------- */
.office-section .owl-carousel .item img {
    border-radius: var(--radius);
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.owl-dots .owl-dot span {
    background: #ccc;
}

.owl-dots .owl-dot.active span {
    background: var(--primary);
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    font-size: 1.2rem !important;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

/* ---------- TURNKEY ---------- */
#turnkey {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* ---------- TEAM ---------- */
.team-card {
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
}

.team-card h5 {
    font-weight: 600;
    font-size: 1rem;
}

/* ---------- 3D DESIGNS / INSTAGRAM ---------- */
.instagram-header {
    display: inline-block;
}

.insta-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.insta-info {
    text-align: left;
}

.insta-info h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.insta-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.design-thumb {
    display: block;
}

.design-placeholder {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border-radius: var(--radius);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.design-placeholder:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.03);
}

/* ---------- ENQUIRY FORM ---------- */
.enquiry-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.enquiry-card .form-control,
.enquiry-card .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 60, 110, 0.15);
}

/* ---------- ABOUT / WHY CHOOSE ---------- */
.company-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.badge-item {
    text-align: center;
    padding: 15px;
}

.badge-item p {
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

.highlight-badge {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 30px;
}

.highlight-badge h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.highlight-badge p {
    color: rgba(255, 255, 255, 0.9);
}

.why-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.why-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.why-item h5 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- FREE QUOTE ---------- */
.quote-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
}

.quote-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-form-card .form-control,
.quote-form-card .form-select {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
}

.quote-form-card .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.quote-form-card .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ---------- FRAUD ALERT MARQUEE ---------- */
.fraud-alert-bar {
    background: #dc3545;
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.fraud-alert-bar marquee {
    display: flex;
    align-items: center;
}

.fraud-alert-bar i {
    color: #ffd700;
}

.fraud-alert-bar strong {
    color: #ffd700;
}

/* ---------- INTERIOR SERVICE CARDS ---------- */
.interior-service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.interior-service-card-link:hover .interior-service-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    cursor: pointer;
}

.interior-service-card {
    transition: all 0.3s ease;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.interior-service-card .service-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.interior-service-card h5 {
    padding: 12px 10px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary);
}

/* ---------- COMPANY CREDENTIALS ---------- */
.company-credentials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.credential-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    transition: var(--transition);
    height: 100%;
}

.credential-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}

.credential-card i {
    color: var(--accent);
    margin-bottom: 12px;
}

.credential-card h6 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.credential-card p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.highlight-credential {
    background: rgba(232, 160, 32, 0.2);
    border-color: var(--accent);
}

.credential-years {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px !important;
}

.fraud-warning-box {
    background: rgba(220, 53, 69, 0.15);
    border: 2px solid rgba(220, 53, 69, 0.5);
    border-radius: var(--radius);
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    color: #fff;
}

.fraud-warning-box > i {
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 4px;
}

.fraud-warning-box h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffd700;
}

.fraud-warning-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Team Placeholder Icons */
.team-profile-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
}

.engineer-img-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    margin: 0 auto 15px;
}

@media (max-width: 767.98px) {
    .fraud-warning-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand h4 {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-rating {
    margin-bottom: 5px;
}

.footer-rating i {
    font-size: 0.9rem;
}

.footer-brand p {
    font-size: 0.85rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-cities a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 12px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-cities a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.fab-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1fb855;
}

.call-btn {
    background: var(--primary);
}

.call-btn:hover {
    background: var(--primary-dark);
}

/* ---------- MOBILE BOTTOM BAR ---------- */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1060;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-bar-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-bar-btn:hover {
    color: var(--white);
}

.mobile-bar-btn.whatsapp {
    background: #25d366;
}

.mobile-bar-btn.call {
    background: var(--primary);
}

.mobile-bar-btn i {
    margin-right: 6px;
}

/* ---------- SCROLLBAR ---------- */
.why-list::-webkit-scrollbar {
    width: 5px;
}

.why-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.why-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .floating-cta {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    body {
        padding-bottom: 55px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content h4 {
        font-size: 0.85rem;
    }

    .hero-slide {
        height: 50vh;
        min-height: 350px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .package-tabs .nav-link {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .calculator-card {
        padding: 25px;
    }

    .enquiry-card {
        padding: 25px;
    }

    .site-gallery-item img {
        height: 150px;
    }

    .office-section .owl-carousel .item img {
        height: 200px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        font-size: 0.75rem;
    }

    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .insta-profile {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .design-placeholder {
        height: 100px;
    }
}

/* ---------- ANIMATIONS ---------- */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
