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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #c5a880;
    border-radius: 3px;
}

/* ===== NAVIGATION ===== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 40px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
    transition: all 0.4s ease;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #8a8a9a;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c5a880;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c5a880;
}

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

.lang-toggle {
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px 6px;
}

.lang-btn.active {
    color: #c5a880;
}

.lang-btn:hover {
    color: #c5a880;
}

.lang-divider {
    color: #333;
    font-size: 0.75rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #c5a880;
    transition: all 0.3s ease;
}

/* ===== DOT NAVIGATION ===== */
.dot-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(138, 138, 154, 0.3);
    border: 1px solid rgba(138, 138, 154, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.dot:hover {
    background: rgba(197, 168, 128, 0.5);
    transform: scale(1.3);
}

.dot.active {
    background: #c5a880;
    box-shadow: 0 0 12px rgba(197, 168, 128, 0.6);
    transform: scale(1.2);
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 60px;
    position: relative;
}

/* ===== HERO ===== */
.hero-section {
    overflow: hidden;
    background: radial-gradient(ellipse at center, #0f1320 0%, #0a0a0f 70%);
}

/* Floating Circles */
.floating-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.08);
    background: rgba(197, 168, 128, 0.02);
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -80px;
    animation-delay: 0s;
}

.circle-2 {
    width: 220px;
    height: 220px;
    top: 80px;
    left: 30%;
    animation-delay: -3s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: -30px;
    right: 10%;
    animation-delay: -6s;
}

.circle-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 15%;
    animation-delay: -9s;
}

.circle-5 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -50px;
    animation-delay: -12s;
}

.circle-6 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    animation-delay: -15s;
}

.circle-7 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 40%;
    animation-delay: -18s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(15px, -20px) scale(1.03);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, 15px) scale(0.97);
        opacity: 0.5;
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
        opacity: 0.7;
    }
}

/* Edge Glow */
.edge-glow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 1;
}

.edge-glow-left {
    left: 0;
    background: linear-gradient(to right, rgba(70, 100, 180, 0.12), transparent);
}

.edge-glow-right {
    right: 0;
    background: linear-gradient(to left, rgba(70, 100, 180, 0.12), transparent);
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.35em;
    line-height: 1.3;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    letter-spacing: 0.5em;
    color: #c5a880;
    margin-top: 24px;
    opacity: 0.9;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SERVICES ===== */
.services-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d18 50%, #0a0a0f 100%);
    padding-bottom: 100px;
}

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

.section-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: #c5a880;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 8px;
    color: #c5a880;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c5a880, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 168, 128, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    color: #c5a880;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.service-desc {
    font-size: 0.9rem;
    color: #8a8a9a;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-section {
    background: #0a0a0f;
}

.about-container,
.approach-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    width: 100%;
}

.about-text,
.approach-text {
    flex: 1;
}

.italic-heading {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 28px;
}

.about-paragraph,
.approach-paragraph {
    font-size: 0.95rem;
    color: #8a8a9a;
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-image,
.approach-image {
    flex: 0 0 auto;
}

.circle-image-wrapper {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 0 60px rgba(197, 168, 128, 0.08);
    transition: all 0.5s ease;
}

.circle-image-wrapper:hover {
    border-color: rgba(197, 168, 128, 0.35);
    box-shadow: 0 0 80px rgba(197, 168, 128, 0.15);
}

.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.circle-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== APPROACH ===== */
.approach-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d18 50%, #0a0a0f 100%);
}

/* ===== CONTACT ===== */
.contact-section {
    background: #0a0a0f;
    text-align: center;
}

.contact-content {
    max-width: 600px;
}

.contact-text {
    font-size: 0.95rem;
    color: #8a8a9a;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-link {
    color: #c5a880;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.contact-link:hover {
    color: #dfc49e;
    transform: translateX(4px);
}

.contact-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ===== FOOTER ===== */
#footer {
    padding: 50px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.08);
    background: #07070c;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(138, 138, 154, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8a9a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    border-color: #c5a880;
    color: #c5a880;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.15);
}

.footer-copy {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 1px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-nav-overlay.show {
    display: flex;
}

.mobile-nav-overlay .nav-link {
    font-size: 1.1rem;
    letter-spacing: 5px;
}

/* ===== APPOINTMENT FAB BUTTON ===== */
.appointment-fab {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 997;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #c5a880 0%, #a8875e 100%);
    color: #0a0a0f;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(197, 168, 128, 0.3);
    transition: all 0.3s ease;
}

.appointment-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(197, 168, 128, 0.45);
}

.appointment-fab svg {
    flex-shrink: 0;
}

/* ===== CONTACT APPOINTMENT BUTTON ===== */
.appointment-btn-contact {
    margin-top: 40px;
    padding: 16px 48px;
    background: transparent;
    border: 1px solid #c5a880;
    color: #c5a880;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.appointment-btn-contact:hover {
    background: #c5a880;
    color: #0a0a0f;
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.25);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #12121f, #0e0e18);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 460px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #8a8a9a;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #c5a880;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.modal-desc {
    font-size: 0.85rem;
    color: #8a8a9a;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: #c5a880;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: #555;
}

.form-group input:focus {
    border-color: rgba(197, 168, 128, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.06);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c5a880 0%, #a8875e 100%);
    color: #0a0a0f;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    box-shadow: 0 8px 30px rgba(197, 168, 128, 0.3);
    transform: translateY(-2px);
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.form-success svg {
    margin-bottom: 16px;
}

.form-success p {
    color: #c5a880;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-container,
    .approach-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .circle-image-wrapper {
        width: 260px;
        height: 260px;
    }

    .section {
        padding: 100px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .lang-toggle {
        right: 60px;
    }

    .dot-nav {
        right: 14px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .hero-name {
        letter-spacing: 0.2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 20px;
    }

    .circle-image-wrapper {
        width: 220px;
        height: 220px;
    }

    .italic-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.2rem;
        letter-spacing: 0.15em;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
    }

    .circle-image-wrapper {
        width: 180px;
        height: 180px;
    }
}
