/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0C;
    color: #E8E8EC;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: #C5A572;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(197, 165, 114, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A0A0C;
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #C5A572;
    margin-bottom: 2rem;
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: rgba(197, 165, 114, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-line-fill {
    width: 0%;
    height: 100%;
    background: #C5A572;
    animation: preloaderLine 2s ease forwards;
}

.preloader-text {
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 232, 236, 0.5);
}

@keyframes preloaderLine {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Typography */
h1, h2, h3, h4, .nav-logo, .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C5A572;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(232, 232, 236, 0.6);
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #E8E8EC;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C5A572;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #C5A572;
}

.nav-cta {
    background: rgba(197, 165, 114, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: rgba(197, 165, 114, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: #C5A572;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0A0A0C;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(10,10,12,0.4), #0A0A0C);
}

.hero-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="none" stroke="%23C5A572" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90 M20,10 L20,90 M30,10 L30,90 M40,10 L40,90 M50,10 L50,90 M60,10 L60,90 M70,10 L70,90 M80,10 L80,90"/></svg>');
    background-size: 40px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 165, 114, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #C5A572;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, #C5A572 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: rgba(232, 232, 236, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: #C5A572;
    color: #0A0A0C;
}

.btn-primary:hover {
    background: #D4B88C;
    transform: translateY(-2px);
    gap: 16px;
}

.btn-outline {
    border: 1px solid rgba(197, 165, 114, 0.5);
    color: #E8E8EC;
    background: transparent;
}

.btn-outline:hover {
    border-color: #C5A572;
    background: rgba(197, 165, 114, 0.1);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #C5A572;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(232, 232, 236, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(197, 165, 114, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(232, 232, 236, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #C5A572;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: #C5A572;
    margin-top: 1.5rem;
}

.center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services {
    padding: 100px 0;
    background: #0F0F12;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197,165,114,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(197, 165, 114, 0.3);
    box-shadow: 0 25px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg, transparent, rgba(197,165,114,0.08), transparent);
    transform: rotate(25deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: #C5A572;
    margin-bottom: 1.5rem;
}

.service-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #D4B88C;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(232, 232, 236, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C5A572;
    font-size: 0.85rem;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.service-more:hover {
    gap: 12px;
}

/* Process */
.process {
    padding: 100px 0;
    background: #0A0A0C;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #C5A572, transparent);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #C5A572;
    background: #0A0A0C;
    padding-right: 1rem;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(232, 232, 236, 0.7);
}

.step-line {
    position: absolute;
    left: 40px;
    bottom: -30px;
    width: 1px;
    height: 30px;
    background: rgba(197, 165, 114, 0.3);
}

/* Advantages */
.advantages {
    padding: 100px 0;
    background: #0F0F12;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.advantages-list {
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(197, 165, 114, 0.05);
    transform: translateX(10px);
}

.advantage-item i {
    font-size: 1.5rem;
    color: #C5A572;
    margin-top: 4px;
}

.advantage-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.advantage-item p {
    font-size: 0.85rem;
    color: rgba(232, 232, 236, 0.6);
}

.stats-card {
    background: linear-gradient(135deg, rgba(197,165,114,0.1), rgba(197,165,114,0.02));
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.stats-card-inner {
    width: 100%;
}

.stat-big {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-big:last-child {
    margin-bottom: 0;
}

.stat-big-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #C5A572;
    display: block;
}

.stat-big-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #0A0A0C;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #C5A572;
}

.faq-question i {
    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;
    padding: 0;
    color: rgba(232, 232, 236, 0.7);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #0F0F12;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.contact-description {
    margin: 1.5rem 0 2rem;
    color: rgba(232, 232, 236, 0.7);
}

.contact-details {
    margin: 2rem 0;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    font-size: 1.2rem;
    color: #C5A572;
    width: 30px;
}

.contact-detail div {
    display: flex;
    flex-direction: column;
}

.contact-detail span:first-child {
    font-size: 0.7rem;
    color: rgba(232, 232, 236, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail a, .contact-detail span:last-child {
    font-size: 1rem;
    text-decoration: none;
    color: #E8E8EC;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #C5A572;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 165, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A572;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #C5A572;
    color: #0A0A0C;
    transform: translateY(-3px);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
    color: #E8E8EC;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(232, 232, 236, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.9rem;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.7rem;
    color: #C5A572;
}

.form-group input:focus, .form-group textarea:focus {
    border-bottom-color: #C5A572;
}

.form-note {
    font-size: 0.7rem;
    color: rgba(232, 232, 236, 0.4);
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: #060608;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #C5A572;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(232, 232, 236, 0.5);
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.7rem;
    color: rgba(232, 232, 236, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #C5A572;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.footer-col a, .footer-col p {
    display: block;
    font-size: 0.8rem;
    color: rgba(232, 232, 236, 0.5);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #C5A572;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.services-grid .service-card {
    opacity: 0;
    transform: translateY(40px);
    animation: staggerFadeUp 0.6s forwards;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button glow effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active, .btn-outline:active {
    transform: scale(0.97);
}

/* Title glow */
.hero-title .title-line {
    display: inline-block;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 0px rgba(197,165,114,0); }
    50% { text-shadow: 0 0 20px rgba(197,165,114,0.25); }
}

/* Counter pop */
.stat-number {
    display: inline-block;
    animation: countPop 0.4s ease-out;
}

@keyframes countPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Loading button state */
.btn-primary.loading {
    background: linear-gradient(90deg, #C5A572, #E0C896, #C5A572);
    background-size: 200% 100%;
    animation: btnLoading 1.5s infinite;
    pointer-events: none;
}

@keyframes btnLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Service card mouse effect */
.service-card {
    --mouse-x: 0px;
    --mouse-y: 0px;
}

.service-card:hover {
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(197,165,114,0.08), transparent);
}