/* Base Styles */
:root {
    --primary-color: #1C1C28;
    --secondary-color: #C9A96E;
    --accent-color: #B69354;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --background: #FFFFFF;
    --border-color: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--background);
}

/* Header Styles */
.header {
    background: var(--primary-color);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
}

.logo {
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
/* Navigation */
.nav {
    background: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.nav a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--secondary-color);
}


/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(rgba(28, 28, 40, 0.8), rgba(28, 28, 40, 0.8)), url('/img/Escort.png');
    background-size: cover;
    background-position: center;
    margin: -2rem -1rem 4rem;
}

.hero h2 {
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Section Titles */
.section-title {
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h3 {
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-content p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--background);
    padding: 4rem 0;
}

.contact-card {
    text-align: center;
    padding: 3rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-info p {
    margin: 0.5rem 0;
}

.contact-info {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Contact Button */
.kbx {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.kbx a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.kbx .q1 {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.kbx:hover .q1 {
    transform: scale(1.1);
}

.contact-text {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        gap: 1rem;
        justify-content: center;
    }
    
    .nav a {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}
/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

/* Additional Components */
.highlight-box {
    background: linear-gradient(rgba(28, 28, 40, 0.03), rgba(28, 28, 40, 0.05));
    border-left: 3px solid var(--secondary-color);
    padding: 2rem;
    margin: 2rem 0;
}

/* Form Styles */
.luxury-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.1);
}

.btn-luxury {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-luxury:hover {
    background: var(--secondary-color);
}

/* Package Cards */
.package-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--secondary-color);
}

.package-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
}

.package-price {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 1rem 0;
    font-weight: bold;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal-luxury {
    background: rgba(28, 28, 40, 0.95);
    padding: 2rem;
}

.modal-luxury .modal-content {
    border: none;
    border-radius: 0;
    background: var(--background);
}

.modal-luxury .modal-header {
    border-bottom: 2px solid var(--secondary-color);
}

.modal-luxury .modal-title {
    color: var(--primary-color);
    font-family: 'Malgun Gothic', '맑은 고딕', serif;
}

/* Loading Animation */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Additional Responsive Styles */
@media (max-width: 480px) {
    .package-card {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-luxury {
        width: 100%;
        padding: 0.8rem;
    }
    
    .modal-luxury {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .nav,
    .footer,
    .kbx {
        display: none;
    }
    
    .hero {
        background: none !important;
        color: var(--primary-color) !important;
        padding: 2rem 0;
    }
    
    .service-card {
        break-inside: avoid;
    }
}