/* ==========================================
   NUKHBA Creative Agency - Main Stylesheet
   Luxury Dark Theme with Gold Accents
   ========================================== */

/* CSS Variables */
:root {
    --color-bg: #0A0A0A;
    --color-bg-secondary: #121212;
    --color-bg-tertiary: #1A1A1A;
    --color-surface: #1E1E1E;
    --color-gold: #D4AF37;
    --color-gold-light: #E8C65C;
    --color-gold-dark: #B8941F;
    --color-text: #F5F5F5;
    --color-text-secondary: #A0A0A0;
    --color-text-muted: #6B6B6B;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(212, 175, 55, 0.3);
    --color-whatsapp: #25D366;
    
    --font-arabic: 'Tajawal', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    cursor: none;
    overflow: hidden;
}

@media (max-width: 991px) {
    body { cursor: auto; }
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* Utility Classes */
.text-gold { color: var(--color-gold); }
.text-outline {
    -webkit-text-stroke: 1.5px var(--color-gold);
    color: transparent;
    font-style: italic;
}
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 768px) {
    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

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

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

button, input, textarea, select {
    font-family: inherit;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.12), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08), transparent 42%),
        var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.preloader-content {
    width: 78px;
    height: 78px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content::before {
    content: '';
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.22);
    border-top-color: var(--color-gold);
    border-right-color: var(--color-gold-light);
    animation: preloaderSpin 0.85s linear infinite;
}

.preloader-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

.preloader-logo {
    display: none !important;
}

.preloader-text-svg {
    font-family: var(--font-arabic);
    font-weight: 800;
    font-size: 60px;
    fill: transparent;
    stroke: var(--color-gold);
    stroke-width: 1.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawText 3s ease forwards, fillText 1s ease 2s forwards;
}

@keyframes drawText {
    to { stroke-dashoffset: 0; }
}

@keyframes fillText {
    to {
        fill: var(--color-gold);
        stroke-width: 0;
    }
}

.preloader-bar {
    display: none !important;
}

.preloader-progress {
    display: none !important;
}

.preloader-percent {
    display: none !important;
}

.preloader-corner {
    display: none !important;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--color-gold);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-outline.hover-effect {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 991px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    display: none !important;
}

[data-aos="fade-left"],
[data-aos="fade-right"] {
    transform: translate3d(0, 32px, 0) !important;
}

[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: all var(--transition-medium);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
}

.brand-logo {
    color: var(--color-gold);
    transition: transform var(--transition-fast);
}

.navbar-brand:hover .brand-logo {
    transform: rotate(-5deg);
}

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

.brand-name {
    font-family: var(--font-arabic);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
}

.brand-tag {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-top: 4px;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--color-text-secondary) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 24px;
}

.btn-nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--color-gold);
    color: var(--color-bg) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-nav-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
    z-index: -1;
}

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

.btn-nav-contact:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-fast);
}

.navbar-toggler span:nth-child(2) {
    width: 20px;
    margin-right: 0;
    margin-left: auto;
}

/* Mobile Menu */
.mobile-menu {
    background: var(--color-bg);
    color: var(--color-text);
    width: 400px !important;
    max-width: 90vw;
    border-left: 1px solid var(--color-border);
}

.mobile-menu .offcanvas-header {
    padding: 30px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu .offcanvas-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-gold);
}

.btn-close-custom {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-close-custom:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
    transform: rotate(90deg);
}

.mobile-nav {
    list-style: none;
    padding: 40px 30px;
}

.mobile-nav li {
    margin-bottom: 8px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.mobile-nav a span {
    font-size: 12px;
    color: var(--color-gold);
    font-weight: 400;
    letter-spacing: 2px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-gold);
    padding-right: 15px;
}

.mobile-contact {
    padding: 30px;
    border-top: 1px solid var(--color-border);
}

.mobile-contact p {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.btn-whatsapp-mobile {
    display: block;
    padding: 16px;
    background: var(--color-whatsapp);
    color: #fff !important;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: transform var(--transition-fast);
}

.btn-whatsapp-mobile:hover {
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.heroSwiper {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-bg);
    overflow: hidden;
}

.hero-slide[data-bg="gradient-1"] {
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        var(--color-bg);
}

.hero-slide[data-bg="gradient-2"] {
    background: 
        radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        var(--color-bg);
}

.hero-slide[data-bg="gradient-3"] {
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        var(--color-bg);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    opacity: 0.6;
}

.hero-content {
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-hover);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.tagline-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--color-gold);
    color: var(--color-bg);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary-custom svg {
    transition: transform var(--transition-medium);
}

.btn-primary-custom:hover {
    color: var(--color-bg);
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary-custom:hover svg {
    transform: translateX(-6px);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-secondary-custom:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--color-border-hover);
}

.visual-circle-1 {
    width: 400px;
    height: 400px;
    animation: rotate 30s linear infinite;
    border-style: dashed;
}

.visual-circle-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(212, 175, 55, 0.15);
    animation: rotate 20s linear infinite reverse;
}

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

.visual-number {
    font-family: var(--font-display);
    font-size: 200px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.visual-label {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute !important;
    bottom: 80px !important;
    right: 50px !important;
    left: auto !important;
    width: auto !important;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: var(--color-border);
    opacity: 1;
    transition: all var(--transition-medium);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 60px;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 80px;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-navigation, .hero-pagination { display: none; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--color-text-secondary);
    font-size: 11px;
    letter-spacing: 3px;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--color-gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
    overflow: hidden;
    z-index: 5;
}

.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 2px;
}

.marquee-track .dot {
    color: var(--color-gold);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
    .hero-marquee { display: none; }
}

/* ========== SECTIONS ========== */
.section-header {
    margin-bottom: 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-label.justify-content-center {
    display: inline-flex;
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

/* ========== ABOUT SECTION ========== */
.about-section {
    position: relative;
    background: var(--color-bg);
}

.about-features {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-hover);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-medium);
}

.feature-item:hover .feature-icon {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: rotate(-5deg) scale(1.05);
}

.feature-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--color-text);
}

.feature-item p {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin: 0;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.stat-card {
    padding: 40px 25px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.stat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.stat-card:nth-child(1) { transform: translateY(30px); }
.stat-card:nth-child(4) { transform: translateY(30px); }

.stat-card:nth-child(1):hover { transform: translateY(25px); }
.stat-card:nth-child(4):hover { transform: translateY(25px); }

.stat-card-dark {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.stat-card-dark .stat-number,
.stat-card-dark .stat-suffix,
.stat-card-dark .stat-label {
    color: var(--color-bg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: var(--color-gold);
    display: inline-block;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    vertical-align: super;
}

.stat-label {
    margin-top: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* About Badge */
.about-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    animation: rotate 20s linear infinite;
    color: var(--color-gold);
}

.about-badge svg {
    width: 100%;
    height: 100%;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite reverse;
}

@media (max-width: 991px) {
    .about-visual { height: auto; margin-top: 60px; }
    .about-badge { display: none; }
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
    background: var(--color-bg-secondary);
    position: relative;
}

.service-card {
    padding: 50px 35px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

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

.service-card-featured {
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-color: var(--color-gold);
    color: var(--color-bg);
}

.service-card-featured .service-number,
.service-card-featured .service-title,
.service-card-featured .service-description,
.service-card-featured .service-icon {
    color: var(--color-bg);
}

.service-card-featured .service-features li {
    color: rgba(10, 10, 10, 0.85);
}

.service-card-featured .service-features li::before {
    background: var(--color-bg);
}

.service-card-featured .service-link {
    color: var(--color-bg);
    border-color: rgba(10, 10, 10, 0.2);
}

.service-card-featured .service-link:hover {
    background: var(--color-bg);
    color: var(--color-gold);
}

.service-number {
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    line-height: 1;
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0.5;
}

.service-icon {
    color: var(--color-gold);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-features li {
    padding: 8px 0;
    padding-right: 20px;
    position: relative;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.service-features li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 17px;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-medium);
    position: relative;
    z-index: 2;
}

.service-link svg {
    transition: transform var(--transition-medium);
}

.service-link:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.service-link:hover svg {
    transform: translateX(-4px);
}

.service-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 6px 14px;
    background: var(--color-bg);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* ========== PROCESS SECTION ========== */
.process-section {
    background: var(--color-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-gold);
    line-height: 1;
    margin-bottom: 25px;
    transition: all var(--transition-medium);
}

.process-step:hover .step-number {
    color: var(--color-gold);
    -webkit-text-stroke: 0;
    transform: scale(1.05);
}

.step-line {
    position: absolute;
    top: 40px;
    right: -15%;
    width: 30%;
    height: 1px;
    background: linear-gradient(to left, var(--color-gold), transparent);
}

.step-content h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .step-line { display: none; }
}
@media (max-width: 576px) {
    .process-timeline { grid-template-columns: 1fr; }
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.clients-header {
    margin-bottom: 60px;
}

.clients-track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: clientsSlide 40s linear infinite;
    width: max-content;
}

@keyframes clientsSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.client-logo {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all var(--transition-medium);
    position: relative;
}

.client-logo:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.client-logo span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 4px;
}

.client-logo small {
    font-size: 10px;
    color: var(--color-gold);
    letter-spacing: 3px;
}

/* ========== PORTFOLIO PREVIEW ========== */
.portfolio-preview {
    background: var(--color-bg);
}

.portfolio-item {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    transition: all var(--transition-medium);
}

.portfolio-item-large {
    height: 500px;
}

.portfolio-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.45) 100%),
        var(--portfolio-photo);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-gradient-1 {
    --portfolio-photo: url('https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&w=1600&q=80');
}

.portfolio-gradient-2 {
    --portfolio-photo: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80');
}

.portfolio-gradient-3 {
    --portfolio-photo: url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1600&q=80');
}

.portfolio-gradient-4 {
    --portfolio-photo: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80');
}

.portfolio-year {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.portfolio-title {
    font-size: 22px;
    color: var(--color-text);
    margin: 0;
}

.portfolio-item-large .portfolio-title {
    font-size: 28px;
}

.portfolio-view {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-medium);
}

.portfolio-item:hover .portfolio-view {
    transform: rotate(45deg) scale(1.1);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: var(--color-bg-secondary);
}

.testimonialsSwiper {
    padding: 40px 10px 60px;
}

.testimonial-card {
    padding: 50px 40px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    height: 100%;
    position: relative;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.testimonial-quote {
    color: var(--color-gold);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--color-gold);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.testimonials-pagination {
    position: relative !important;
    margin-top: 30px;
    text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-border);
    opacity: 1;
    transition: all var(--transition-fast);
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 35px;
    border-radius: 5px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.cta-wrapper {
    padding: 70px 60px;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-label {
    display: inline-block;
    font-size: 13px;
    color: var(--color-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-text {
    color: var(--color-text-secondary);
    font-size: 17px;
    margin: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--color-whatsapp);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-medium);
    position: relative;
    z-index: 2;
}

.btn-cta:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .cta-wrapper { padding: 50px 25px; }
}

/* ========== FOOTER ========== */
.footer {
    padding: 90px 0 30px;
    background: var(--color-bg-tertiary);
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer-brand svg {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

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

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

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--color-text-secondary);
    font-size: 14px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

.footer-contact li svg {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all var(--transition-medium);
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.copyright {
    color: var(--color-text-muted);
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .footer-bottom-links { justify-content: center; margin-top: 15px; }
    .copyright { text-align: center; }
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    font-size: 13px;
    transition: color var(--transition-fast);
}

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

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-medium);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--color-whatsapp);
    animation: whatsappRing 2s infinite;
}

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

@keyframes whatsappRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg-tertiary);
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    border: 1px solid var(--color-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 20px);
}

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

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

.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-5px);
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 180px 0 80px;
    background: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.breadcrumb-custom a {
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

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

.breadcrumb-separator {
    color: var(--color-text-muted);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 15px;
    line-height: 1.1;
}

.page-subtitle {
    color: var(--color-text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT PAGE ========== */
.story-section {
    background: var(--color-bg);
}

.story-image {
    height: 550px;
    border-radius: 24px;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%),
        radial-gradient(circle at 30% 30%, #2C1810 0%, #0A0A0A 80%);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.story-image::before {
    content: 'N';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 320px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-gold);
    opacity: 0.4;
}

.story-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 25px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-image-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-image-badge h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.story-image-badge p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Values Section */
.values-section {
    background: var(--color-bg-secondary);
}

.value-card {
    padding: 45px 30px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    height: 100%;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
}

.value-icon-wrap {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-hover);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-medium);
}

.value-card:hover .value-icon-wrap {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: rotate(-8deg) scale(1.05);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--color-bg);
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1410 0%, #0a0a0a 100%);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.team-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.team-avatar {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 160px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-gold);
    transition: all var(--transition-medium);
}

.team-card:hover .team-avatar {
    color: var(--color-gold);
    -webkit-text-stroke: 0;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
}

.team-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 2px;
}

/* ========== SERVICES PAGE ========== */
.services-main {
    background: var(--color-bg);
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-hover);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.service-detail-number {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-gold);
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-detail-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-text {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-detail-features li {
    padding: 15px 0;
    padding-right: 35px;
    position: relative;
    color: var(--color-text);
    font-size: 15px;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-features li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--color-gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-image {
    aspect-ratio: 4/5;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.62) 100%);
}

.service-detail-image::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    pointer-events: none;
}

.service-detail-image-1 {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80');
}

.service-detail-image-2 {
    background-image: url('https://images.unsplash.com/photo-1554048612-b6a482bc67e5?auto=format&fit=crop&w=1600&q=80');
}

.service-detail-image-3 {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80');
}

.service-detail-image-icon {
    display: none;
}

/* ========== PORTFOLIO PAGE ========== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 26px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

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

.portfolio-grid .portfolio-item {
    margin-bottom: 30px;
}

/* ========== CONTACT PAGE ========== */
.contact-main {
    background: var(--color-bg);
}

.contact-info-card {
    padding: 40px 30px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    height: 100%;
    transition: all var(--transition-medium);
    text-align: center;
}

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

.contact-info-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-hover);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-medium);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--color-gold);
    color: var(--color-bg);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info-card a {
    color: var(--color-gold);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--color-gold-light);
}

.contact-form-wrapper {
    padding: 60px 50px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 24px;
}

.form-group-custom {
    margin-bottom: 25px;
}

.form-label-custom {
    display: block;
    font-size: 13px;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.form-control-custom {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 15px;
    transition: all var(--transition-medium);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-bg-tertiary);
}

.form-control-custom::placeholder {
    color: var(--color-text-muted);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
}

.form-submit:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.contact-map {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(0.9) hue-rotate(180deg);
    border: 0;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition-medium);
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: inherit;
}

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

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

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

.faq-answer-content {
    padding: 0 28px 22px;
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
    .btn-nav-contact {
        display: none;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero-content {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 11px;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 14px 24px;
        font-size: 14px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-suffix {
        font-size: 22px;
    }

    .cta-wrapper {
        text-align: center;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .portfolio-item,
    .portfolio-item-large {
        height: 320px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }

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

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

    .page-title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .page-subtitle,
    .section-text,
    .hero-description {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-title,
    .section-title,
    .page-title,
    .page-subtitle,
    .section-text,
    .service-detail-title,
    .service-detail-text,
    .service-detail-number,
    .portfolio-title,
    .portfolio-category,
    .contact-info-card h3,
    .contact-info-card p,
    .faq-question,
    .faq-answer-content,
    .footer-title,
    .footer-brand p,
    .copyright,
    .form-label-custom {
        text-align: center !important;
    }

    .section-label,
    .breadcrumb-custom,
    .social-links,
    .footer-bottom-links {
        justify-content: center;
    }

    .footer-links li,
    .footer-contact li {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .portfolio-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .mobile-nav a {
        justify-content: center;
        text-align: center;
    }

    .mobile-nav a span {
        display: none;
    }

    .portfolio-view {
        width: 52px;
        height: 52px;
    }

    .service-detail-features {
        padding-right: 0;
        margin-right: 0;
    }

    .service-detail-features li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding-right: 0;
        text-align: center;
    }

    .service-detail-features li::before {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        flex-shrink: 0;
    }

    .faq-question {
        justify-content: center;
        flex-wrap: wrap;
    }

    .form-control-custom,
    textarea.form-control-custom,
    select.form-control-custom {
        text-align: center;
    }

    .contact-map {
        height: 320px;
    }
}

/* ========== LOADING ANIMATIONS ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Selection on featured card */
.service-card-featured ::selection {
    background: var(--color-bg);
    color: var(--color-gold);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Ensure links in featured card have proper color */
.service-card-featured .service-features li {
    color: rgba(10, 10, 10, 0.8);
}
