/* ============================================
   TEAM INTERIOR - LUXURY INTERIOR DESIGN
   Premium Website Stylesheet
   ============================================ */
/* CSS Variables */
:root {
    --bg-primary: #0B0B0B;
    --bg-surface: #111111;
    --bg-card: #181818;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E8C547;
    --text-primary: #FFFFFF;
    --text-secondary: #CFCFCF;
    --text-muted: #888888;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #111111 0%, #0B0B0B 100%);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-padding: 120px;
    --container-max: 1400px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}
.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s var(--transition-smooth);
}
.cursor.hover .cursor-circle {
    width: 60px;
    height: 60px;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.loading-content {
    text-align: center;
}
.loading-logo {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 40px;
    letter-spacing: 10px;
}
.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px;
    overflow: hidden;
}
.loading-progress {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    transition: width 0.3s ease;
}
.loading-text {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--transition-smooth);
}
.nav.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
}
.logo-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}
.nav-link:hover {
    color: var(--text-primary);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.nav-phone:hover {
    color: var(--accent-gold);
}
.nav-phone i {
    width: 16px;
    height: 16px;
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}
.nav-cta i {
    width: 16px;
    height: 16px;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    text-align: center;
}
.mobile-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-link:hover {
    color: var(--accent-gold);
}
.mobile-cta {
    margin-top: 40px;
    padding: 15px 40px;
    background: var(--accent-gold);
    border: none;
    color: var(--bg-primary);
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
}
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 40px;
    overflow: hidden;
}
.hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}
#hero-canvas {
    width: 100%;
    height: 100%;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 40px;
}
.hero-badge i {
    width: 16px;
    height: 16px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 30px;
}
.title-line {
    display: block;
}
.title-line.accent {
    color: var(--accent-gold);
    font-style: italic;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--accent-gold);
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}
.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--gradient-gold);
    border: none;
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E8C547 0%, #D4AF37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary span, .btn-primary i {
    position: relative;
    z-index: 1;
}
.btn-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.btn-primary:hover i {
    transform: translateX(5px);
}
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.btn-secondary i {
    width: 18px;
    height: 18px;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rating-stars {
    display: flex;
    gap: 4px;
}
.rating-stars i {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    fill: var(--accent-gold);
}
.rating-text {
    font-size: 14px;
    color: var(--text-primary);
}
.rating-count {
    font-size: 12px;
    color: var(--text-muted);
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero-floating-cards {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}
.floating-card {
    width: 180px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}
.floating-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}
.floating-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.floating-card span {
    display: block;
    padding: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
section {
    padding: var(--section-padding) 40px;
    position: relative;
}
.section-header {
    margin-bottom: 80px;
}
.section-header.centered {
    text-align: center;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}
.section-header.centered .section-eyebrow {
    padding-left: 0;
}
.section-header.centered .section-eyebrow::before {
    display: none;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
}
.section-title .accent {
    color: var(--accent-gold);
    font-style: italic;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}
.about-image {
    position: relative;
}
.image-reveal {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.image-reveal img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    text-align: center;
}
.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--accent-gold);
    line-height: 1;
}
.badge-text {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}
.about-text {
    padding-right: 40px;
}
.about-lead {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.about-founder {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 8px;
}
.founder-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}
.founder-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-primary);
}
.founder-title {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.about-awards {
    display: flex;
    gap: 30px;
}
.award-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}
.award-item i {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-gold);
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.service-icon i {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}
.service-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
}
.service-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.service-features span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}
.service-link:hover {
    gap: 12px;
}
.service-link i {
    width: 16px;
    height: 16px;
}
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.portfolio-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}
.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.portfolio-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 5px;
}
.portfolio-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.portfolio-btn {
    align-self: flex-start;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.portfolio-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}
.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}
.comparison-slider {
    max-width: 1000px;
    margin: 0 auto;
}
.comparison-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.comparison-before, .comparison-after {
    position: absolute;
    inset: 0;
}
.comparison-after {
    width: 50%;
    overflow: hidden;
}
.comparison-before img, .comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: var(--bg-card);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.comparison-before .comparison-label {
    left: 20px;
}
.comparison-after .comparison-label {
    right: 20px;
    color: var(--accent-gold);
}
.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--accent-gold);
    cursor: ew-resize;
    transform: translateX(-50%);
}
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.handle-circle i {
    width: 20px;
    height: 20px;
    color: var(--bg-primary);
}
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}
.process-step {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}
.step-number {
    width: 120px;
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    flex-shrink: 0;
}
.step-content h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 15px;
}
.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}
.why-us-image {
    position: relative;
}
.floating-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-around;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
}
.floating-stat {
    text-align: center;
}
.floating-stat .stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--accent-gold);
}
.floating-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feature-item {
    display: flex;
    gap: 25px;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}
.feature-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 10px;
}
.feature-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 80px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}
.testimonial-rating i {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    fill: var(--accent-gold);
}
.testimonial-text {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-primary);
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}
.author-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 18px;
}
.author-project {
    font-size: 13px;
    color: var(--text-muted);
}
.client-logos {
    text-align: center;
}
.logos-title {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.logos-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.logo-item {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.logo-item:hover {
    opacity: 1;
    color: var(--text-primary);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s ease;
}
.pricing-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
}
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 15px;
}
.pricing-price {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--accent-gold);
}
.pricing-price span {
    font-size: 16px;
    color: var(--text-muted);
}
.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
}
.pricing-features li i {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}
.pricing-card button {
    width: 100%;
}
.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    font-size: 14px;
    color: var(--text-muted);
}
.pricing-note i {
    width: 18px;
    height: 18px;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--accent-gold);
}
.faq-question i {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-answer p {
    padding-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container-max);
    margin: 0 auto 80px;
}
.contact-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 30px 0 50px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    margin-top: 3px;
}
.contact-item .label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.contact-item .value {
    font-size: 16px;
    color: var(--text-primary);
}
.social-links {
    display: flex;
    gap: 20px;
}
.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-5px);
}
.social-link i {
    width: 20px;
    height: 20px;
}
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    position: relative;
    margin-bottom: 25px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--text-muted);
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
}
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label, .form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: var(--accent-gold);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23CFCFCF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
}
.map-container {
    max-width: var(--container-max);
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}
.map-container iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}
.footer {
    background: var(--bg-surface);
    padding: 80px 40px 40px;
}
.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 32px;
    display: block;
    margin-bottom: 20px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 400px;
}
.footer-badges {
    display: flex;
    gap: 20px;
}
.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    font-size: 12px;
    color: var(--accent-gold);
}
.footer-badges .badge i {
    width: 16px;
    height: 16px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 25px;
}
.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--accent-gold);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-muted);
}
.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}
.payment-icons {
    display: flex;
    gap: 15px;
}
.payment-icons i {
    width: 24px;
    height: 24px;
}
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.sticky-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.sticky-btn.whatsapp {
    background: #25D366;
    color: white;
}
.sticky-btn.call {
    background: var(--accent-gold);
    color: var(--bg-primary);
}
.sticky-btn.book {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.sticky-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.sticky-btn i {
    width: 20px;
    height: 20px;
}
.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.exit-popup.active {
    opacity: 1;
    visibility: visible;
}
.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}
.exit-popup.active .popup-content {
    transform: scale(1);
}
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.popup-close:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}
.popup-close i {
    width: 20px;
    height: 20px;
}
.popup-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.popup-left h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 20px;
}
.popup-left p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.popup-form input {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}
.popup-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.popup-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 20px;
}
.popup-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .hero-floating-cards {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .about-content, .why-us-content, .contact-content {
        grid-template-columns: 1fr;
    }
    .about-image, .why-us-image {
        order: -1;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-item.large {
        grid-column: span 2;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .pricing-card.featured {
        transform: none;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .popup-content {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .popup-right {
        display: none;
    }
}
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    .nav-container {
        padding: 0 20px;
    }
    section {
        padding: var(--section-padding) 20px;
    }
    .hero {
        padding: 100px 20px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item.large {
        grid-column: span 1;
    }
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    .timeline-line {
        display: none;
    }
    .step-number {
        font-size: 48px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .sticky-cta {
        left: 20px;
        right: 20px;
        bottom: 20px;
        flex-direction: row;
        justify-content: center;
    }
    .sticky-btn span {
        display: none;
    }
    body {
        cursor: auto;
    }
    .cursor {
        display: none;
    }
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--accent-gold);
}
.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}
::selection {
    background: var(--accent-gold);
    color: var(--bg-primary);
}