/* Pretendard Font */
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 900;
    font-display: swap;
}

/* Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #D4A017;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --dark: #1A1A1A;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 45px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.header.scrolled .nav-link { color: var(--dark); }

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

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--dark); }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8860B 0%, #D4A017 50%, #FFD700 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-line:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 0.95; }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--white);
    color: var(--gold);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block { width: 100%; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
    animation: bounce 2s infinite;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
section { padding: 100px 0; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px auto;
}

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

/* Vision Section */
.vision { background: var(--gray-light); }

.vision-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vision-item {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vision-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.vision-icon svg {
    width: 40px;
    height: 40px;
}

.vision-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.philosophy-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.philosophy-text {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.philosophy-highlight {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.8;
    margin-top: 30px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Trust Section */
.trust { background: var(--gray-light); }

.trust-items { max-width: 900px; margin: 0 auto; }

.trust-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.trust-item:hover { box-shadow: var(--shadow); }

.trust-question {
    display: flex;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    gap: 20px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.trust-question h3 {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
}

.trust-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.trust-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    transition: var(--transition);
}

.trust-item.active .trust-toggle svg {
    transform: rotate(180deg);
}

.trust-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 30px;
}

.trust-item.active .trust-answer {
    max-height: 3000px;
    padding: 0 30px 30px;
}

.trust-answer p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.answer-highlight {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 1.125rem;
}

.answer-bold {
    font-weight: 700;
    color: var(--dark);
}

.hotel-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.hotel-column h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.hotel-column ul {
    list-style: none;
}

.hotel-column li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.hotel-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.system-badges {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.guarantee-box {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--gold);
}

.guarantee-box h4 {
    font-size: 1.25rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.guarantee-result {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 1.125rem;
    margin-top: 15px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.solution-item {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
}

.solution-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.answer-result {
    font-weight: 600;
    color: var(--dark);
    margin-top: 20px;
}

.method-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.method {
    padding: 30px;
    border-radius: 15px;
    border: 2px solid;
}

.method.wrong {
    background: #FEF2F2;
    border-color: #DC2626;
}

.method.correct {
    background: #F0FDF4;
    border-color: #16A34A;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.method h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.method-result {
    font-weight: 600;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Services Section */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--white);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-price {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.service-card.featured .service-price {
    border-color: rgba(255, 255, 255, 0.3);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--gold);
}

.service-card.featured .feature-item svg {
    stroke: var(--white);
}

.feature-highlight svg {
    fill: var(--gold);
    stroke: none;
}

.service-card.featured .feature-highlight svg {
    fill: var(--white);
}

.feature-note {
    opacity: 0.7;
}

.comparison-table {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.table-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

th {
    background: var(--gray-light);
    font-weight: 700;
}

.featured-col {
    background: rgba(212, 160, 23, 0.1);
}

.table-yes {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.table-no {
    color: var(--gray);
}

.philosophy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--gray-light) 100%);
    padding: 70px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.philosophy-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold-dark);
    position: relative;
    padding-bottom: 20px;
}

.philosophy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
}

.founder-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.quote-card {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(212, 160, 23, 0.15);
}

.quote-icon {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.08;
    position: absolute;
    top: 30px;
    left: 35px;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    position: relative;
    z-index: 1;
    line-height: 2;
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: #333;
    font-weight: 400;
}

.quote-author {
    border-top: 3px solid var(--gold);
    padding-top: 25px;
    margin-top: 30px;
}

.quote-author strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 700;
}

.quote-author span {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Testimonials Section - Premium Clean Design */
.testimonials {
    background: linear-gradient(135deg, #fafafa 0%, var(--gray-light) 100%);
}

.testimonial-slider {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track-container {
    overflow: hidden;
    border-radius: 25px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    border-radius: 25px;
    padding: 60px 55px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid rgba(212, 160, 23, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 40px;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.06;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    margin-bottom: 20px;
    line-height: 2.1;
    font-size: 1.125rem;
    color: #2c2c2c;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-author {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 3px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 700;
}

.author-info span {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.slider-btn {
    width: 54px;
    height: 54px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.slider-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
}

.slider-btn:hover svg {
    stroke: var(--white);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    transition: var(--transition);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: var(--gold-light);
}

.dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title,
.contact-info .title-underline {
    text-align: left;
    margin-left: 0;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-message.success {
    background: #DEF7EC;
    color: #03543F;
    border: 1px solid #84E1BC;
    display: block;
}

.form-message.error {
    background: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #F98080;
    display: block;
}

/* Footer - Improved 4-Column Grid Design */
.footer {
    background: #2c2c2c;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-about .footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links ul,
.footer-contact-details ul,
.footer-business ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact-details ul li,
.footer-business ul li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links ul a,
.footer-contact-details ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul a:hover,
.footer-contact-details ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    flex-shrink: 0;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-scroll].visible {
    opacity: 1;
}

[data-scroll="fade-up"].visible {
    transform: translateY(0);
}

[data-scroll="fade-up"] {
    transform: translateY(50px);
}

[data-scroll="fade-left"].visible,
[data-scroll="fade-right"].visible {
    transform: translateX(0);
}

[data-scroll="fade-left"] {
    transform: translateX(-50px);
}

[data-scroll="fade-right"] {
    transform: translateX(50px);
}

[data-scroll="scale-in"].visible {
    transform: scale(1);
}

[data-scroll="scale-in"] {
    transform: scale(0.9);
}

[data-scroll="slide-in-left"].visible,
[data-scroll="slide-in-right"].visible {
    transform: translateX(0);
}

[data-scroll="slide-in-left"] {
    transform: translateX(-100px);
}

[data-scroll="slide-in-right"] {
    transform: translateX(100px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active { left: 0; }

    .nav-menu li { padding: 20px 0; }

    .nav-link { color: var(--dark); }

    .hamburger { display: flex; }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .section-title { font-size: 2rem; }

    .stats-grid,
    .service-cards,
    .founder-quotes,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .philosophy-section {
        padding: 40px 25px;
    }

    .philosophy-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 40px 25px;
    }

    .method-comparison {
        grid-template-columns: 1fr;
    }

    .hotel-list {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-about .footer-logo-img {
        margin: 0 auto 20px;
    }

    .footer-contact-details ul li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }

    .stat-number { font-size: 3rem; }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .philosophy-title {
        font-size: 1.5rem;
    }

    .quote-card {
        padding: 35px 25px;
    }

    .testimonial-card {
        padding: 35px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .footer-main {
        padding-bottom: 40px;
    }
}
