/* =============================================
   ALP YAPI — Çelik Yapı & İnşaat Premium CSS v2.0
   ============================================= */

/* ============ GOOGLE FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
    --primary: #0C0A09;
    --primary-light: #1C1917;
    --secondary: #CA8A04;
    --secondary-light: #E8C44A;
    --accent: #F59E0B;
    --dark: #050505;
    --light: #FAFAF9;
    --text-dark: #0C0A09;
    --text-light: #FAFAF9;
    --text-muted: #A8A29E;
    --text-muted-light: #D6D3D1;
    --border: rgba(202, 138, 4, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-hover: rgba(202, 138, 4, 0.06);
    --gradient-dark: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(12, 10, 9, 0.95) 100%);
    --gradient-gold: linear-gradient(135deg, #CA8A04 0%, #E8C44A 50%, #CA8A04 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(202, 138, 4, 0.15), rgba(232, 196, 74, 0.05));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 4px 30px rgba(202, 138, 4, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-pill: 50px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --container-max: 1280px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-light);
    background: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-light);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h5 { font-size: clamp(1rem, 2vw, 1.2rem); }
h6 { font-size: 1rem; }

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

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

::selection {
    background: var(--secondary);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    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-logo {
    text-align: center;
}

.preloader-logo h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--secondary);
    letter-spacing: 6px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo .loader-bar {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 3px;
    animation: loaderBar 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes loaderBar {
    0% { width: 30px; opacity: 0.5; }
    50% { width: 100px; opacity: 1; }
    100% { width: 30px; opacity: 0.5; }
}

/* ============ NAVBAR ============ */
.navbar-main {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-main.scrolled {
    background: rgba(5, 5, 5, 0.97);
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar-main .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 3px;
}

.navbar-main .navbar-brand span {
    color: var(--secondary);
}

.navbar-main .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    padding: 8px 14px !important;
    position: relative;
    text-transform: uppercase;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.navbar-main .nav-link:hover {
    color: var(--secondary);
    background: rgba(202, 138, 4, 0.08);
}

.navbar-main .nav-link.active {
    color: var(--secondary);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(90vw, 900px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.mega-menu-item {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: var(--card-bg-hover);
    border-color: var(--border);
    transform: translateX(3px);
}

.mega-menu-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-top: 2px;
    min-width: 24px;
}

.mega-menu-item h6 {
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.mega-menu-item p {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}

/* CTA Button */
.btn-cta {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-overlay .nav-link {
    font-size: 1.3rem;
    padding: 10px 30px !important;
    display: block;
    text-align: center;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
}

.mobile-menu-overlay .nav-link:hover,
.mobile-menu-overlay .nav-link.active {
    color: var(--secondary);
    background: rgba(202, 138, 4, 0.08);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============ HERO SECTION ============ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
    background: var(--dark);
}

.hero-swiper {
    height: 100%;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 5, 5, 0.85) 0%,
        rgba(5, 5, 5, 0.5) 50%,
        rgba(5, 5, 5, 0.6) 100%
    );
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 1;
}

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

.hero-tag {
    display: inline-block;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 5px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-body);
    background: rgba(202, 138, 4, 0.08);
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-title span {
    color: var(--secondary);
    font-style: italic;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    margin-bottom: 35px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-progress-bar {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-progress-bar:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-progress-bar.active .fill {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    animation: progressFill 5s linear;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

/* Scroll Arrow */
.scroll-down {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    animation: scrollBounce 2.5s infinite;
    transition: var(--transition-fast);
}

.scroll-down:hover {
    color: var(--secondary);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============ SECTION COMMON ============ */
.section-padding {
    padding: 120px 0;
}

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

.section-light {
    background: var(--primary);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.section-tag::before {
    content: '';
    width: 35px;
    height: 1px;
    background: var(--secondary);
    flex-shrink: 0;
}

.section-tag.centered-tag {
    justify-content: center;
}

.section-tag.centered-tag::before {
    display: none;
}

.section-title {
    margin-bottom: 16px;
}

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

.section-desc {
    color: var(--text-muted);
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.8;
}

.section-desc.centered {
    margin: 0 auto;
    text-align: center;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 16px 0 28px;
    border-radius: 3px;
}

.gold-divider.centered {
    margin-left: auto;
    margin-right: auto;
}

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

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.5;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 120px 0;
    overflow: hidden;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary);
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: var(--shadow-gold);
}

.about-badge .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.about-badge .text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 40px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.feature-row:hover {
    background: var(--card-bg-hover);
    border-color: var(--border);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gradient-gold-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
}

.feature-row h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.feature-row p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    background: var(--dark);
    padding: 120px 0;
}

.service-card {
    background: var(--primary-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 45px 30px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(202, 138, 4, 0.03) 0%, rgba(202, 138, 4, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 30px rgba(202, 138, 4, 0.06);
    border-color: rgba(202, 138, 4, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.18), rgba(202, 138, 4, 0.04));
    border: 1px solid rgba(202, 138, 4, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.6rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
    transform: rotateY(180deg) scale(1.05);
}

.service-card h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: #FAFAF9;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Service card entrance animation (IntersectionObserver) */
.services-row .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-row.visible .service-card {
    opacity: 1;
    transform: translateY(0);
}

.services-row.visible .col-md-4:nth-child(1) .service-card { transition-delay: 0s; }
.services-row.visible .col-md-4:nth-child(2) .service-card { transition-delay: 0.1s; }
.services-row.visible .col-md-4:nth-child(3) .service-card { transition-delay: 0.2s; }
.services-row.visible .col-md-4:nth-child(4) .service-card { transition-delay: 0.3s; }
.services-row.visible .col-md-4:nth-child(5) .service-card { transition-delay: 0.4s; }
.services-row.visible .col-md-4:nth-child(6) .service-card { transition-delay: 0.5s; }

.service-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 8px;
    border: 1px solid rgba(202, 138, 4, 0.2);
    background: rgba(202, 138, 4, 0.06);
}

.service-link:hover {
    color: #0C0A09;
    gap: 8px;
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(202, 138, 4, 0.25);
}

/* ============ PROJECTS / PORTFOLIO ============ */
.projects-section {
    padding: 120px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 26px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(202, 138, 4, 0.08);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
}

.project-item {
    transition: var(--transition);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(5, 5, 5, 0.95) 0%, 
        rgba(5, 5, 5, 0.4) 40%, 
        transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .category {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.project-overlay h5 {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.project-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.project-card:hover .project-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* ============ COLLECTIONS SECTION ============ */
.collections-section {
    background: radial-gradient(circle at top right, rgba(202, 138, 4, 0.05) 0%, var(--dark) 70%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.collections-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='%23CA8A04' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}

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

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(5, 5, 5, 0.9) 0%, 
        rgba(5, 5, 5, 0.2) 60%, 
        transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, 
        rgba(202, 138, 4, 0.95) 0%, 
        rgba(5, 5, 5, 0.3) 70%, 
        transparent 100%);
    backdrop-filter: blur(5px);
}

.collection-overlay h4 {
    color: var(--text-light);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.collection-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.collection-specs span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.collection-specs span i {
    color: var(--secondary);
}

.btn-collection {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: var(--transition);
}

.collection-card:hover .btn-collection {
    color: var(--dark);
    background: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

/* Navigation Overlay */
.swiper-nav-outer {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.swiper-nav-outer button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    background: rgba(5,5,5,0.6);
    backdrop-filter: blur(5px);
    color: var(--secondary);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-nav-outer button:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
}

.btn-collection:hover {
    background: var(--secondary);
    color: var(--dark);
    gap: 12px;
}

/* Custom Swiper Navigation */
.swiper-button-next-custom,
.swiper-button-prev-custom {
    width: 48px;
    height: 48px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.swiper-button-next-custom:hover,
.swiper-button-prev-custom:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* ============ TESTIMONIALS ============ */
/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    background: var(--primary);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative shapes */
.testimonials-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 30px;
    right: 8%;
    font-size: 18rem;
    font-family: var(--font-heading);
    color: rgba(202, 138, 4, 0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Outer wrapper for nav + swiper */
.testimonial-outer-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-swiper {
    flex: 1;
    min-width: 0;
}

/* Navigation Buttons */
.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(202, 138, 4, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: var(--secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.testimonial-btn:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    transform: scale(1.08);
}

.testimonial-btn:active {
    transform: scale(0.95);
}

/* Testimonial Card */
.testimonial-card {
    padding: 10px;
}

.testimonial-card-inner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px 44px 36px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.testimonial-card-inner:hover {
    border-color: rgba(202, 138, 4, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

/* Quote icon */
.testimonial-quote-icon {
    position: absolute;
    top: 18px;
    left: 32px;
    font-size: 1.8rem;
    color: rgba(202, 138, 4, 0.15);
    line-height: 1;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-gold);
    flex-shrink: 0;
}

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

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info h6 {
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author-info p {
    color: var(--secondary);
    font-size: 0.82rem;
    margin: 0;
}

/* Pagination dots */
.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: var(--transition-fast);
    cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-outer-wrapper {
        gap: 10px;
    }
    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .testimonial-card-inner {
        padding: 36px 24px 28px;
    }
    .testimonial-quote-icon {
        top: 14px;
        left: 22px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .testimonial-btn {
        display: none;
    }
    .testimonial-card-inner {
        padding: 30px 18px 24px;
    }
    .testimonial-author-img {
        width: 50px;
        height: 50px;
    }
}

/* ============ BLOG SECTION ============ */
.blog-section {
    padding: 120px 0;
}

.blog-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--primary);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.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.05);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-date i {
    color: var(--secondary);
}

.blog-date .ms-3 {
    margin-left: 12px;
}

.blog-card-body h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-body h5 {
    color: var(--secondary);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Image overlay on hover */
.blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 9, 0.6) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.blog-card:hover .blog-img-overlay {
    opacity: 1;
}

/* Meta row (date + read time) */
.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i {
    color: var(--secondary);
}

.blog-read-time {
    color: var(--text-muted);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-time i {
    color: var(--secondary);
}

/* Card footer with author + CTA */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    gap: 12px;
}

.blog-author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-author-avatar span {
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
}

.blog-author-name {
    color: var(--text-muted);
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-read-more:hover {
    color: var(--secondary-light);
    gap: 8px;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border: 1px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--text-light);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn-cta {
    position: relative;
    z-index: 1;
}

/* ============ FOOTER ============ */
.footer-main {
    background: var(--dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 22px;
    line-height: 1.8;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

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

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-top: 4px;
    min-width: 18px;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 4px 0;
}

.footer-bottom a {
    color: var(--secondary);
}

.footer-bottom a:hover {
    color: var(--secondary-light);
}

/* ============ MODAL ============ */
.modal-content {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--dark);
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 22px 28px;
}

.modal-header .modal-title {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header .modal-title i {
    color: var(--secondary);
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 28px;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.88rem;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.modal-body .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.modal-body .form-select option {
    background: var(--dark);
    color: var(--text-light);
}

.modal-body .form-label {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-muted-light);
    margin-bottom: 5px;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.form-check-label {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
}

.form-check-label a {
    color: var(--secondary) !important;
}

.btn-submit {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(202, 138, 4, 0.35);
}

/* ============ TOAST ============ */
.custom-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 99999;
    transform: translateX(120%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast.success {
    background: #059669;
}

.custom-toast.error {
    background: #DC2626;
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
    background: var(--dark);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.08;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--dark), transparent);
}

.page-header h1 {
    color: var(--text-light);
    font-size: clamp(2rem, 4vw, 3.2rem);
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 12px;
    background: transparent;
}

.page-header .breadcrumb-item {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.page-header .breadcrumb-item a {
    color: var(--secondary);
}

.page-header .breadcrumb-item a:hover {
    color: var(--secondary-light);
}

.page-header .breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted) !important;
}

/* ============ SERVICE DETAIL PAGE ============ */
.service-header-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.service-detail-image {
    position: relative;
}

.service-detail-badge {
    position: absolute;
    bottom: -15px;
    left: 30px;
    background: var(--primary);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.service-detail-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.service-detail-badge span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.service-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.service-gallery-overlay i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-specs-table tr {
    border-bottom: 1px solid var(--border-light);
}

.tech-specs-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
}

.tech-specs-table .spec-label {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
    background: rgba(202, 138, 4, 0.03);
}

.tech-specs-table .spec-value {
    color: var(--text-light);
    font-weight: 600;
}

.service-process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    height: 100%;
}

.process-step-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.process-step-card:hover::before {
    transform: scaleY(1);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.process-step-card h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============ PROJECT DETAIL ============ */
.project-info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.project-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.project-info-card i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.project-info-card h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.project-info-card p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0;
}

/* ============ BLOG DETAIL ============ */
.blog-article-content {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-article-content h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin: 35px 0 15px;
    font-weight: 600;
}

.blog-article-content p {
    margin-bottom: 18px;
}

.blog-article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-article-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 20px 25px;
    margin: 30px 0;
    background: rgba(202, 138, 4, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.blog-sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 25px;
}

.blog-sidebar-widget h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
}

.blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories li {
    border-bottom: 1px solid var(--border-light);
}

.blog-categories li:last-child {
    border-bottom: none;
}

.blog-categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.blog-categories a i {
    color: var(--secondary);
    font-size: 0.65rem;
    transition: var(--transition-fast);
}

.blog-categories a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    padding-left: 5px;
}

.recent-post-item img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-item h6 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-item span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ============ COLLECTION DETAIL ============ */
.quick-spec-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition);
}

.quick-spec-card:hover {
    transform: translateY(-3px);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.quick-spec-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.quick-spec-card .spec-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.quick-spec-card .spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-item {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.package-item:hover {
    border-color: var(--border);
    background: var(--card-bg-hover);
}

.package-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gradient-gold-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Accordion Overrides */
.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 22px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(202, 138, 4, 0.06);
    color: var(--secondary);
}

.accordion-button::after {
    filter: invert(0.7);
}

.accordion-body {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 22px 18px;
}

/* ============ WHY CHOOSE US ============ */
.why-choose-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    opacity: 0.04;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.why-card .why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    background: var(--gradient-gold-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: rotateY(180deg);
}

.why-card h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ VIDEO SECTION ============ */
.video-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.video-thumb-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.video-thumb-wrapper img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-thumb-wrapper:hover img {
    transform: scale(1.04);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 0 0 15px rgba(202, 138, 4, 0.2);
    animation: videoPulse 2.5s ease-in-out infinite;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 25px rgba(202, 138, 4, 0.1);
}

@keyframes videoPulse {
    0%, 100% { box-shadow: 0 0 0 15px rgba(202, 138, 4, 0.2); }
    50% { box-shadow: 0 0 0 25px rgba(202, 138, 4, 0.1); }
}

.video-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.video-stat-item {
    text-align: center;
}

.video-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.video-stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============ TIMELINE ============ */
.timeline-section {
    padding: 120px 0;
    position: relative;
}

.timeline-track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: var(--transition);
    position: relative;
}

.timeline-content:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid var(--dark);
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 2;
    top: 35px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 16px;
    transition: var(--transition);
}
.timeline-content:hover .timeline-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: rotateY(180deg);
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 8px;
}

.timeline-content h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-info-card {
    background: var(--primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 18px;
}

.contact-info-card h5 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

/* ============ PRICING ============ */
.pricing-section {
    position: relative;
    z-index: 2;
}

.price-card2 {
    background: var(--primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.popular-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 38px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.price-card2:hover,
.price-card2.active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(202, 138, 4, 0.25);
}

.price-card2:hover::before,
.price-card2.active::before {
    transform: scaleX(1);
}

.price-card-title-wrap {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.price-card-title {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.price-card-subtitle {
    font-size: 0.82rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checklist {
    flex: 1;
}

.checklist ul li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.checklist ul li i {
    color: var(--secondary);
    min-width: 20px;
}

/* Pricing card image header */
.price-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-shrink: 0;
}

.price-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.price-card2:hover .price-card-img img {
    transform: scale(1.06);
}

.price-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12, 10, 9, 0.15) 0%,
        rgba(12, 10, 9, 0.60) 50%,
        rgba(12, 10, 9, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.price-card-img-overlay .price-card-title {
    font-size: 1.5rem;
    color: #FAFAF9;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.price-card-img-overlay .price-card-subtitle {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.price-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-card-footer {
    margin-top: auto;
    padding-top: 20px;
}

.price-card-footer .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
/* XXL */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/* XL - Tablet landscape / small desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* LG - Tablet */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hamburger {
        display: block;
    }

    .navbar-main .navbar-collapse {
        display: none !important;
    }

    .navbar-main {
        padding: 14px 0;
    }
    
    .navbar-main.scrolled {
        padding: 6px 0;
    }

    .hero-slide {
        min-height: 500px;
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-images {
        height: 380px;
        margin-bottom: 40px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-section {
        padding: 80px 0;
    }

    .stat-item::after {
        display: none;
    }

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

    .services-section,
    .collections-section,
    .testimonials-section,
    .blog-section,
    .projects-section,
    .stats-section {
        padding: 80px 0;
    }

    .mega-menu {
        display: none !important;
    }
    
    .collection-card {
        aspect-ratio: 4/3;
    }
    
    .testimonials-section::before {
        font-size: 12rem;
        top: 50px;
        right: 5%;
    }
}

/* MD - Large phone / small tablet */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .hero-slide {
        min-height: 450px;
        height: 75vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .scroll-down {
        display: none;
    }

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

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

    .section-desc {
        font-size: 0.9rem;
    }

    .about-images {
        height: 320px;
    }

    .about-img-1 {
        height: 280px;
    }

    .about-img-2 {
        height: 220px;
    }

    .about-badge {
        width: 90px;
        height: 90px;
        bottom: 30px;
    }

    .about-badge .number {
        font-size: 1.8rem;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .footer-top [class*="col-"] {
        margin-bottom: 30px;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .price-card2 {
        padding: 30px 22px;
    }

    .price-card-title {
        font-size: 1.5rem;
    }

    .pricing-section .row > div {
        margin-bottom: 20px;
    }
    
    .collection-card {
        aspect-ratio: 4/3;
    }
    
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.78rem;
    }
    
    .hero-progress {
        bottom: 25px;
    }
    
    .hero-progress-bar {
        width: 35px;
    }
}

/* SM - Phone */
@media (max-width: 576px) {
    .hero-slide {
        min-height: 400px;
        height: 70vh;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .about-images {
        height: 260px;
    }

    .about-img-1 {
        width: 70%;
        height: 220px;
    }

    .about-img-2 {
        width: 60%;
        height: 170px;
    }

    .about-badge {
        width: 80px;
        height: 80px;
        bottom: 20px;
    }

    .about-badge .number {
        font-size: 1.5rem;
    }

    .about-badge .text {
        font-size: 0.55rem;
    }

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

    .stat-item {
        padding: 20px 10px;
    }

    .collection-card img {
        min-height: 280px;
    }

    .collection-overlay {
        padding: 25px;
    }

    .page-header {
        padding: 110px 0 50px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .modal-body {
        padding: 20px;
    }

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

    .services-section,
    .collections-section,
    .testimonials-section,
    .blog-section,
    .projects-section,
    .stats-section {
        padding: 60px 0;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .custom-toast {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        font-size: 0.85rem;
    }

    .project-card {
        aspect-ratio: 4/3;
    }

    .filter-btn {
        padding: 7px 16px;
        font-size: 0.75rem;
    }

    .service-card {
        padding: 35px 22px;
    }
    
    .section-tag {
        font-size: 0.85rem;
    }
    
    .section-tag::before {
        width: 25px;
    }
    
    .collection-card {
        aspect-ratio: 4/3;
    }
    
    .footer-main {
        padding: 50px 0 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        margin: 4px 0;
    }
}

/* ============ UTILITY CLASSES ============ */
.text-gold {
    color: var(--secondary) !important;
}

.bg-gold {
    background: var(--secondary) !important;
}

.bg-dark-custom {
    background: var(--dark) !important;
}

.bg-primary-custom {
    background: var(--primary) !important;
}

.fw-playfair {
    font-family: var(--font-heading);
}

.fw-cormorant {
    font-family: var(--font-accent);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* Swiper overrides */
.swiper-pagination-bullet {
    background: var(--secondary) !important;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* ============ CUSTOM CURSOR ============ */
@media (pointer: fine) {
    body {
        cursor: none !important;
    }

    a, button, .swiper-button-next-custom, .swiper-button-prev-custom, .glightbox {
        cursor: none !important;
    }

    .cursor-dot,
    .cursor-follower {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--secondary);
        transition: width 0.3s, height 0.3s;
    }

    .cursor-follower {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(202, 138, 4, 0.4);
        transition: transform 0.1s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
    }

    .cursor-hover .cursor-dot {
        width: 0;
        height: 0;
    }

    .cursor-hover .cursor-follower {
        width: 56px;
        height: 56px;
        background-color: rgba(202, 138, 4, 0.08);
        border-color: var(--secondary);
    }

    .cursor-drag .cursor-follower {
        width: 70px;
        height: 70px;
        background-color: var(--secondary);
        border-color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cursor-drag .cursor-follower::after {
        content: "DRAG";
        font-size: 9px;
        font-weight: bold;
        letter-spacing: 1px;
        color: var(--dark);
    }
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-follower {
        display: none !important;
    }
}

/* =============================================
   PREMIUM SERVICE CARDS
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: var(--primary-light);
}

.service-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(202, 138, 4, 0.25);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(202, 138, 4, 0.06);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-premium:hover .service-card-bg {
    transform: scale(1.06);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12, 10, 9, 0.10) 0%,
        rgba(12, 10, 9, 0.50) 25%,
        rgba(12, 10, 9, 0.85) 55%,
        rgba(12, 10, 9, 0.97) 100%
    );
    transition: all 0.5s ease;
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    justify-content: flex-end;
}

.service-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.25), rgba(202, 138, 4, 0.06));
    border: 1px solid rgba(202, 138, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.service-card-premium:hover .service-card-icon-wrap {
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.35), rgba(202, 138, 4, 0.1));
    border-color: rgba(202, 138, 4, 0.4);
    transform: scale(1.05);
}

.service-card-icon-wrap i {
    font-size: 1.4rem;
    color: var(--secondary);
    transition: all 0.4s ease;
}

.service-card-premium:hover .service-card-icon-wrap i {
    transform: scale(1.1);
}

.service-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FAFAF9;
    margin-bottom: 10px;
    line-height: 1.3;
    flex-shrink: 0;
}

.service-card-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.service-card-tags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.08);
}

.service-card-tags span i {
    font-size: 0.55rem;
    color: var(--secondary);
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #FAFAF9;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(202, 138, 4, 0.2);
}

.service-card-cta:hover {
    background: #B57900;
    border-color: #B57900;
    color: #FAFAF9;
    box-shadow: 0 6px 24px rgba(202, 138, 4, 0.35);
    transform: translateY(-2px);
}

.service-card-cta i {
    transition: transform 0.3s ease;
}

.service-card-cta:hover i {
    transform: translateX(4px);
}

/* Service Card Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-card-content {
        min-height: 440px;
        padding: 28px 22px 26px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-content {
        padding: 24px 20px;
        min-height: auto;
    }
}
/* ============ HERO BOTTOM WRAP & CIRCULAR TEXT ============ */
.hero-bottom-wrap {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 20;
    display: none;
}

@media (min-width: 992px) {
    .hero-bottom-wrap {
        display: block;
    }
}

.about-tag {
    position: relative;
    width: 150px;
    height: 150px;
}

.about-experience-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-title-anime {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    animation: rotateCircle 20s linear infinite;
}

.circle-title-anime span {
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: 0 75px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    display: inline-block;
    letter-spacing: 1px;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-tag-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 5;
    transition: var(--transition);
}

.about-tag-thumb:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-scroll-wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-scroll-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--dark);
    font-size: 1.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scrollBounce 2s infinite;
}

/* Character Rotations (360 / 29 chars ≈ 12.41deg) */
.char1 { transform: rotate(0deg); }
.char2 { transform: rotate(12.41deg); }
.char3 { transform: rotate(24.82deg); }
.char4 { transform: rotate(37.23deg); }
.char5 { transform: rotate(49.64deg); }
.char6 { transform: rotate(62.05deg); }
.char7 { transform: rotate(74.46deg); }
.char8 { transform: rotate(86.87deg); }
.char9 { transform: rotate(99.28deg); }
.char10 { transform: rotate(111.69deg); }
.char11 { transform: rotate(124.1deg); }
.char12 { transform: rotate(136.51deg); }
.char13 { transform: rotate(148.92deg); }
.char14 { transform: rotate(161.33deg); }
.char15 { transform: rotate(173.74deg); }
.char16 { transform: rotate(186.15deg); }
.char17 { transform: rotate(198.56deg); }
.char18 { transform: rotate(210.97deg); }
.char19 { transform: rotate(223.38deg); }
.char20 { transform: rotate(235.79deg); }
.char21 { transform: rotate(248.2deg); }
.char22 { transform: rotate(260.61deg); }
.char23 { transform: rotate(273.02deg); }
.char24 { transform: rotate(285.43deg); }
.char25 { transform: rotate(297.84deg); }
.char26 { transform: rotate(310.25deg); }
.char27 { transform: rotate(322.66deg); }
.char28 { transform: rotate(335.07deg); }
.char29 { transform: rotate(347.48deg); }

/* ============ MARQUEE SLIDER ============ */
.marquee-section {
    background: var(--primary);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-card {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.marquee-card a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.marquee-card a:hover {
    color: var(--secondary);
}

.marquee-card img.spin {
    width: 24px;
    height: 24px;
    animation: rotateSpin 8s linear infinite;
}

@keyframes rotateSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* For smooth continuous marquee effect */
.marquee-slider1 .swiper-wrapper {
    transition-timing-function: linear !important;
}
