@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-color: #0a0a0b;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-gold: #c5a059;
    --accent-gold-hover: #d4b47a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Glassmorphism Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.4), rgba(10, 10, 11, 0.9));
}

.hero-content {
    position: relative;
    max-width: 900px;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Sections */
section {
    padding: 100px 5%;
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Profile Section */
.profile {
    background: #121214;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.profile-img {
    flex: 1;
    min-width: 300px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.profile-text {
    flex: 1;
    min-width: 300px;
}

.profile-text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col p, .footer-col li {
    color: var(--text-muted);
    margin-bottom: 15px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: #555;
    font-size: 0.8rem;
}

.service-card.full-width {
    grid-column: 1 / -1;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.content-rich-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 12px;
}

.detail-list {
    list-style: none;
    margin-top: 15px;
}

.detail-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.detail-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.detail-list.small li {
    font-size: 0.9rem;
    margin-bottom: 8px;
}


/* Disclaimer Section */
.disclaimer-section {
    background: #0d0d0f;
    padding: 60px 5%;
    border-top: 1px solid var(--glass-border);
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
}

.disclaimer-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
    font-style: italic;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .disclaimer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 999;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.mobile-menu ul li a {
    display: block;
    padding: 14px 24px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, background 0.2s;
}

.mobile-menu ul li:last-child a {
    border-bottom: none;
}

.mobile-menu ul li a:hover {
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 12px 5%;
        gap: 10px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .cta-button {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .profile-img {
        min-width: unset;
        width: 100%;
        height: 240px;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .content-rich-box {
        padding: 30px 25px;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    color: #0a0a0b;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
}
