/* ============================================
   PT. SURYA SEMUA PERKASA / LEADERS DMC
   Multi-Page Website Styles - Brand Colors
   Cream/Beige + Dark Green + Gold Accents
   ============================================ */

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

:root {
    /* Brand Colors from image(1).png */
    --cream: #f5f0e6;
    --cream-dark: #ebe5d8;
    --cream-light: #faf8f2;
    --dark-green: #218760;
    --dark-green-light: #2a5244;
    --dark-green-dark: #152b23;
    --gold: #c9a84c;
    --gold-light: #d4b86a;
    --gold-dark: #a68a3c;
    --text-dark: #218760;
    --text-body: #3d5a4e;
    --text-muted: #7a8f85;
    --text-light: #9aaa9e;
    --white: #ffffff;
    --border-color: rgba(30, 60, 50, 0.12);
    --border-gold: rgba(201, 168, 76, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-green);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 240, 230, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(30, 60, 50, 0.1);
    background: rgba(245, 240, 230, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text .company-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1px;
}

.nav-logo-text .company-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark-green);
}

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

.nav-cta {
    background: var(--dark-green);
    color: var(--cream);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--dark-green);
}

.nav-cta:hover {
    background: transparent;
    color: var(--dark-green);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--dark-green);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #e8e0d0 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(245, 240, 230, 0.6), var(--cream));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 0 24px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(30, 60, 50, 0.15));
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--dark-green);
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--dark-green);
    color: var(--cream);
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--dark-green);
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 50, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-green);
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--dark-green);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--dark-green);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-green);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--dark-green);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cream);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   CARDS
   ============================================ */

.card-grid {
    display: grid;
    gap: 30px;
}

.card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 40px rgba(30, 60, 50, 0.08);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-green);
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.card-list {
    list-style: none;
    margin-top: 16px;
}

.card-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.card-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */

.destination-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 40px rgba(30, 60, 50, 0.08);
}

.destination-card-image {
    height: 220px;
    background-size: cover;
    background-position: center top; /* Show top of image */
    background-repeat: no-repeat;
    position: relative;
}



.destination-card-content {
    padding: 30px;
}

.destination-card-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.destination-card-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--dark-green);
}

.destination-card-subtitle {
    font-style: italic;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 40px rgba(30, 60, 50, 0.08);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--dark-green);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-section {
    background: linear-gradient(180deg, var(--cream), var(--cream-dark));
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.why-card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-green);
}

.why-card-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================
   PROMISE SECTION
   ============================================ */

.promise-section {
    background: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1558005137-1915c5a58a17?w=1920&q=80') center/cover no-repeat;
    opacity: 0.05;
}

.promise-box {
    background: var(--dark-green-light);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.promise-box h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.promise-box p {
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 2;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-green-dark);
    border-top: 1px solid var(--border-gold);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact strong {
    color: var(--cream);
    min-width: 80px;
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logos img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-logos img:hover {
    opacity: 1;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */

.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding-top: 80px;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.about-content {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   DESTINATIONS PAGE
   ============================================ */

.destinations-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding-top: 80px;
    text-align: center;
}

.destinations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518548419970-58e3b4079ab2?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.destination-detail {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.destination-detail-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.destination-detail-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--white), transparent);
}

.destination-detail-header h2 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--dark-green);
}

.destination-detail-header h2 span {
    display: block;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    margin-top: 8px;
}

.destination-detail-body {
    padding: 40px;
}

.destination-detail-body p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding-top: 80px;
    text-align: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding-top: 80px;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 24px;
}

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

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 4px;
}

.contact-info-item div strong {
    display: block;
    color: var(--dark-green);
    margin-bottom: 4px;
}

.contact-info-item div p,
.contact-info-item div a {
    color: var(--text-body);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--dark-green);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

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

    .nav-cta {
        display: none;
    }

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

    .hero-tagline {
        font-size: 1.3rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .promise-box {
        padding: 30px 20px;
    }

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

    .destination-detail-header {
        height: 200px;
        padding: 20px;
    }

    .destination-detail-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
