/* ============================================
   SST Construction & Interior Design
   Premium Dark Theme Stylesheet
   ============================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Colors */
    --black: #0f0f0f;
    --dark: #1a1a1a;
    --dark-2: #222222;
    --dark-3: #2a2a2a;
    --dark-4: #333333;
    --gold: #D4AF37;
    --gold-light: #e8c84a;
    --gold-dark: #b8952e;
    --white: #ffffff;
    --gray: #999999;
    --gray-light: #cccccc;
    --gray-dark: #666666;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37, #e8c84a, #D4AF37);
    --gradient-dark: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    --gradient-overlay: linear-gradient(to bottom, rgba(15,15,15,0.7), rgba(15,15,15,0.9));
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 5px 25px rgba(212,175,55,0.3);
    
    /* Border */
    --border: 1px solid rgba(255,255,255,0.08);
    --border-gold: 1px solid rgba(212,175,55,0.3);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Radius */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-light);
    background-color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--gold-light);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-bar {
    width: 6px;
    height: 40px;
    background: var(--gold);
    border-radius: 3px;
    animation: loaderBars 1s ease-in-out infinite;
}

.loader-bar:nth-child(1) { animation-delay: 0s; }
.loader-bar:nth-child(2) { animation-delay: 0.1s; }
.loader-bar:nth-child(3) { animation-delay: 0.2s; }
.loader-bar:nth-child(4) { animation-delay: 0.3s; }
.loader-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes loaderBars {
    0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 8px;
}

.preloader-logo {
    max-height: 80px;
    max-width: 220px;
    object-fit: contain;
    animation: logoPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.5));
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1.03); }
}


/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    border-bottom: var(--border);
    font-size: 0.85rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left span {
    color: var(--gray);
}

.top-bar-left i {
    color: var(--gold);
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-right a {
    color: var(--gray);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: var(--border);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(15, 15, 15, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold) !important;
    letter-spacing: 4px;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    color: var(--gray) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--gray-light) !important;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Dropdown */
.dropdown-menu {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    animation: fadeInDown 0.3s ease;
    margin-top: 8px;
}

.dropdown-item {
    color: var(--gray-light);
    padding: 8px 20px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    padding-left: 25px;
}

.dropdown-divider {
    border-color: rgba(255,255,255,0.08);
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px;
    position: relative;
    width: 35px;
    height: 30px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 5px auto;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ==================== BUTTONS ==================== */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--black) !important;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--white), var(--gold-light));
    transition: var(--transition);
    z-index: -1;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--black) !important;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 32px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
}

.section-darker {
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 3px;
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
    position: relative;
    padding: 160px 0 100px;
    background: var(--dark);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--black), transparent);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-banner-content .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-banner-content .breadcrumb-item {
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.page-banner-content .breadcrumb-item a {
    color: var(--gold);
}

.page-banner-content .breadcrumb-item.active {
    color: var(--gray);
}

.page-banner-content .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-dark);
    content: "›";
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

/* বামে dark gradient, ডানে clear */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.80) 30%,
        rgba(10, 10, 10, 0.40) 60%,
        rgba(10, 10, 10, 0.05) 100%
    );
}

/* নিচে black fade overlay */
.hero-slide-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.hero-slide-content {
    position: absolute;
    top: 42%;               /* একটু উপরে */
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    padding: 0 15px;
}

.hero-slide-content .container {
    max-width: 1200px;
    padding-left: 60px;     /* বামে ধাক্কা */
}

.hero-slide-content .subtitle {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 620px;       /* বামে সীমাবদ্ধ */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.5s;
}

.hero-slide-content h1 span {
    color: var(--gold);
}

.hero-slide-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 500px;       /* বামে সীমাবদ্ধ */
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.7s;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.9s;
}

.hero-slide.active .subtitle,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
}

/* Slider scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-accent);
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s ease infinite;
}

@keyframes scrollMouse {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.2);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card .read-more {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .read-more i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.service-card:hover .read-more i {
    margin-left: 12px;
}

/* ==================== PROJECT CARDS ==================== */
.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(15,15,15,0.95), transparent);
    transition: var(--transition);
}

.project-card:hover .project-card-overlay {
    padding-bottom: 40px;
}

.project-card-category {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.project-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.project-card .location {
    font-size: 0.85rem;
    color: var(--gray);
}

.project-card .location i {
    color: var(--gold);
    margin-right: 5px;
}

.project-card-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.project-card:hover .project-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== COUNTER SECTION ==================== */
.counter-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diag" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><line x1="0" y1="0" x2="0" y2="20" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diag)"/></svg>');
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.counter-number span {
    color: var(--gold);
}

.counter-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== TEAM CARDS ==================== */
.team-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.team-card-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-card-img img {
    transform: scale(1.08);
}

.team-card-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    transition: var(--transition);
}

.team-card:hover .team-card-social {
    bottom: 15px;
}

.team-card-social a {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.team-card-social a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.team-card-info {
    padding: 25px 20px;
    text-align: center;
}

.team-card-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card-info span {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--gold);
}

/* ==================== TESTIMONIAL ==================== */
.testimonial-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212,175,55,0.2);
    box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: rgba(212,175,55,0.2);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--gold);
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.blog-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-category {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.blog-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.blog-card:hover h4 {
    color: var(--gold);
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-card-meta i {
    color: var(--gold);
    margin-right: 5px;
}

/* ==================== WHY CHOOSE US ==================== */
.why-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    border: var(--border);
    background: var(--dark);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}

.why-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(212,175,55,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .icon {
    background: var(--gold);
    color: var(--black);
}

.why-card h5 {
    margin-bottom: 10px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* ==================== TIMELINE ==================== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212,175,55,0.2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.2);
}

.timeline-content {
    width: 45%;
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* ==================== GALLERY ==================== */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,15,15,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--gold);
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* ==================== FILTER BUTTONS ==================== */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ==================== FORMS ==================== */
.form-control,
.form-select {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    background: var(--dark-3);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-control::placeholder {
    color: var(--gray-dark);
}

.form-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 8px;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

/* ==================== FAQ ACCORDION ==================== */
.faq-item {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(212,175,55,0.3);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h5 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-question .faq-toggle {
    width: 35px;
    height: 35px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    color: var(--black);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.newsletter-box {
    background: var(--dark-2);
    border: var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.newsletter-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-box p {
    margin-bottom: 0;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form .form-control {
    padding: 16px 20px;
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
}

.newsletter-form .btn-gold {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 30px;
}

/* ==================== MEGA FOOTER ==================== */
.mega-footer {
    background: var(--dark);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: var(--border);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

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

.footer-contact .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact .contact-item i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.footer-bottom {
    padding: 20px 0;
}

.copyright {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-btn {
    position: fixed;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: floatBounce 3s ease infinite;
}

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

.whatsapp-btn {
    bottom: 100px;
    right: 25px;
    background: #25D366;
}

.call-btn {
    bottom: 30px;
    right: 25px;
    background: var(--gold);
    color: var(--black);
    animation-delay: 1.5s;
}

.call-btn:hover {
    color: var(--black);
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ==================== ALERTS ==================== */
.alert {
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(40,167,69,0.15);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(220,53,69,0.15);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    border-left: 4px solid var(--gold);
}

.btn-close {
    filter: invert(1);
}

/* ==================== PAGINATION ==================== */
.pagination {
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.page-link {
    background: var(--dark);
    border: var(--border);
    color: var(--gray-light);
    padding: 10px 16px;
    border-radius: var(--radius) !important;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.page-link:hover,
.page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
}

/* ==================== CAREER CARDS ==================== */
.career-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.career-card:hover {
    border-color: rgba(212,175,55,0.2);
    transform: translateY(-5px);
}

.career-card h4 {
    margin-bottom: 10px;
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.career-meta span {
    font-size: 0.85rem;
    color: var(--gray);
}

.career-meta i {
    color: var(--gold);
    margin-right: 5px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-5px);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 20px;
}

.contact-info-card h5 {
    margin-bottom: 10px;
}

.google-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: var(--border);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) brightness(0.7) contrast(1.2);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Typing cursor */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--gold);
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Progress bars */
.progress-bar-custom {
    background: var(--dark-3);
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 50px;
    width: 0;
    transition: width 1.5s ease;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.progress-label span:first-child {
    color: var(--white);
}

.progress-label span:last-child {
    color: var(--gold);
}

/* ==================== ABOUT PAGE SPECIFIC ==================== */
.value-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .icon {
    background: var(--gold);
    color: var(--black);
}

/* ==================== SERVICE DETAIL ==================== */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.service-feature-item:hover {
    border-color: rgba(212,175,55,0.3);
}

.service-feature-item i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ==================== SIDEBAR ==================== */
.sidebar-widget {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-title {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: var(--border);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 8px;
}

.sidebar-links a {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.sidebar-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.sidebar-links .count {
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    .hero-slide-content h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.4rem; }
}

@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-slide-content h1 { font-size: 2.8rem; }
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    
    .navbar-collapse {
        background: var(--dark);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
        border: var(--border);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .slider-nav { display: none; }
    .scroll-indicator { display: none; }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
    
    .newsletter-box {
        padding: 30px;
        text-align: center;
    }
    
    .newsletter-form .input-group {
        margin: 20px auto 0;
    }
    
    .page-banner {
        padding: 140px 0 80px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .hero-slide-content h1 { font-size: 2.2rem; max-width: 100%; }
    .hero-slide-content p { font-size: 1rem; max-width: 100%; }
    .hero-slide-content .container { padding-left: 20px; }   /* mobile এ কম */
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .counter-number { font-size: 2.2rem; }
    
    .page-banner-content h1 { font-size: 2rem; }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .project-card { height: 280px; }
    .gallery-item { height: 220px; }

    /* Fix overlay visibility on mobile */
    .hero-slide-overlay {
        background: rgba(10, 10, 10, 0.65) !important;
    }
    
    /* Responsive experience badge to avoid horizontal scroll */
    .experience-badge {
        bottom: 10px !important;
        right: 10px !important;
        padding: 20px 15px !important;
    }
}

@media (max-width: 575px) {
    .hero-slide-content h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.8rem; letter-spacing: 3px; }
    
    .btn-gold, .btn-outline-gold {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .whatsapp-btn { bottom: 90px; right: 15px; }
    .call-btn { bottom: 25px; right: 15px; }
    .scroll-to-top { left: 15px; bottom: 25px; }
    
    .newsletter-box { padding: 25px; }
    
    .testimonial-card { padding: 25px; }
    
    .filter-buttons { gap: 6px; }
    .filter-btn { padding: 8px 16px; font-size: 0.8rem; }

    /* Adjust navbar text size to prevent mobile wrapping */
    .logo-text {
        font-size: 1.4rem !important;
        letter-spacing: 2px !important;
    }
    .logo-sub {
        font-size: 0.55rem !important;
        letter-spacing: 2px !important;
    }
}

/* Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider { min-height: 500px; }
    .hero-slide-content h1 { font-size: 2rem; }
}

/* ==================== UTILITY CLASSES ==================== */
.text-gold { color: var(--gold) !important; }
.bg-dark-custom { background: var(--dark) !important; }
.border-gold { border-color: var(--gold) !important; }
.mb-6 { margin-bottom: 4rem; }
.mt-6 { margin-top: 4rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }

/* Image hover zoom */
.img-zoom {
    overflow: hidden;
    border-radius: var(--radius);
}

.img-zoom img {
    transition: var(--transition-slow);
}

.img-zoom:hover img {
    transform: scale(1.08);
}

/* Gradient text */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass effect */
.glass {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--border);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
