/* Handld KC - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #141414;
    --bg-card: #242424;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent-gold: #c9a962;
    --accent-gold-light: #dfc07a;
    --accent-gold-dim: #8a7444;
    --accent-cream: #f8f6f0;
    --border-subtle: #333;
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #dfc07a 50%, #c9a962 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Layout */
.layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 320px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #1a1a1a 100%);
    padding: 40px 30px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
}

.logo {
    margin-bottom: 20px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-gold);
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Navigation */
nav {
    flex: 1;
}

nav ul {
    list-style: none;
}

nav > ul > li {
    margin-bottom: 8px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s ease;
    display: block;
    padding: 10px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
    margin-left: -10px;
}

nav a:hover {
    color: var(--text-light);
    border-left-color: var(--accent-gold-dim);
}

nav a.active {
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
}

/* Service dropdown */
.nav-section {
    margin-bottom: 8px;
}

.nav-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    padding-left: 10px;
    margin-left: -10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-section-header:hover {
    color: var(--text-light);
}

.nav-section-header.active {
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
}

.nav-section-header .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-section.open .arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    border-left: 1px solid var(--border-subtle);
    margin-left: 5px;
}

.nav-section.open .nav-dropdown {
    max-height: 500px;
}

.nav-dropdown a {
    font-size: 0.85rem;
    padding: 8px 0;
    color: var(--text-muted);
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}

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

/* Sidebar footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.contact-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.1);
}

/* Main content */
.main-content {
    margin-left: 320px;
    flex: 1;
    min-height: 100vh;
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.4;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 50%, rgba(26,26,26,0.7) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
}

.hero-content {
    padding: 60px;
    max-width: 600px;
    z-index: 1;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero h2 span {
    color: var(--accent-gold);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    border: 1px solid var(--text-muted);
    color: var(--text-light);
    margin-left: 15px;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.1);
}

/* Sections */
.section {
    padding: 100px 60px;
}

.section-dark {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin-top: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 50px;
    max-width: 600px;
}

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-gold-dim);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.service-card a:hover {
    color: var(--accent-gold-light);
    gap: 10px;
}

/* Features list */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-gold);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-10%, -10%); }
    50% { transform: translate(10%, 10%); }
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    color: var(--bg-darker);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
}

.cta-section .btn {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
}

.cta-section .btn:hover {
    background-color: var(--bg-darker);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Page headers */
.page-header {
    padding: 100px 60px 60px;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    position: relative;
}

/* Content sections */
.content-section {
    padding: 60px;
}

.content-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.8;
}

/* Pricing */
.pricing-table {
    margin-top: 30px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(odd) {
    background: linear-gradient(90deg, var(--bg-card) 0%, transparent 100%);
}

.pricing-row:hover {
    background: rgba(201, 169, 98, 0.05);
}

.pricing-service {
    color: var(--text-light);
    font-weight: 400;
}

.pricing-amount {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Contact form */
.contact-form {
    max-width: 500px;
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

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

/* Footer */
footer {
    padding: 40px 60px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: var(--bg-darker);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 1000;
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

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

    .main-content {
        margin-left: 0;
    }

    .hero-content {
        padding: 40px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 40px;
    }

    .page-header {
        padding: 80px 40px 40px;
    }

    .content-section {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 30px 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .section {
        padding: 50px 20px;
    }

    .page-header {
        padding: 70px 20px 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 30px 20px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        text-align: center;
    }
}
