/* ===== MAIN LANDING PAGE STYLES ===== */

/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 225, 240, 0.9); /* subtle light pink */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.12);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

/* Header brand adjustments */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* increased gap for better spacing */
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

/* Ensure logo has proper background handling */
.nav-logo img.logo {
    background: transparent;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
}

/* Apply same treatment to all logos */
img.logo {
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
}

/* Make logo size smaller and more responsive */
.logo {
    width: 120px; /* further reduced from 200px */
    height: auto;
    object-fit: contain;
    max-width: clamp(80px, 15vw, 120px);
    display: block !important; /* Force display */
    mix-blend-mode: multiply; /* removes white background */
    filter: brightness(1.1) contrast(1.1); /* enhances logo visibility */
    /* Debug styles */
    border: 2px solid red; /* Temporary debug border */
    background: rgba(255, 0, 0, 0.1); /* Temporary debug background */
}

@media (max-width: 992px) {
  .logo { width: 100px; max-width: clamp(70px, 20vw, 100px); }
  
  /* Tablet button adjustments */
  .btn-assessment, .btn-admin, .btn-login {
      padding: 0.55rem 1.1rem !important;
      font-size: 0.88rem;
  }
  
  .nav-menu {
      gap: 1rem; /* reduced gap for tablet */
  }
  
  /* Tablet navigation links */
  .nav-link {
      padding: 0.6rem 1.2rem !important;
      font-size: 0.9rem;
  }
  
  .nav-link[href="#courses"],
  .nav-link[href="#about"],
  .nav-link[href="#contact"] {
      margin: 0.2rem 0;
  }
}

@media (max-width: 600px) {
  .logo { width: 80px; max-width: 30vw; }
}

/* Single-line solid black bold text */
.prodi-info {
    white-space: nowrap;
    font-weight: 900;
    font-size: 11px; /* further reduced */
    color: #000000;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5), 0 1px 3px rgba(0,0,0,0.15);
    line-height: 1.1;
    margin-left: 0.5rem; /* space from MANTEN Academy text */
}

.logo-text {
    font-size: 1.3rem; /* reduced from 1.5rem */
    font-weight: 900; /* increased weight for emboss effect */
    /* Gold gradient with emboss effect */
    background: linear-gradient(180deg, #fff7bf 0%, #ffe58a 20%, #f5cd57 40%, #d4af37 65%, #a67c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    /* Emboss/3D effect */
    -webkit-text-stroke: 1px rgba(120, 84, 18, 0.3);
    text-shadow: 
        0 1px 0 rgba(255,240,204,0.95),
        0 2px 0 rgba(238,210,126,0.95),
        0 3px 0 rgba(215,179,77,0.9),
        0 4px 0 rgba(190,150,50,0.8),
        0 5px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    white-space: nowrap; /* prevent text wrapping */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* reduced from 2rem */
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: transparent;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Kelas - Blue Gradient */
.nav-link[href="#courses"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.nav-link[href="#courses"]:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
}

/* Tentang - Green Gradient */
.nav-link[href="#about"] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white !important;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.nav-link[href="#about"]:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    transform: translateY(-3px);
}

/* Kontak - Orange to Pink Gradient */
.nav-link[href="#contact"] {
    background: linear-gradient(135deg, #fd7e14, #e83e8c);
    color: white !important;
    box-shadow: 0 3px 10px rgba(253, 126, 20, 0.3);
}

.nav-link[href="#contact"]:hover {
    background: linear-gradient(135deg, #e83e8c, #fd7e14);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
    transform: translateY(-3px);
}

/* Remove old hover underline effect */
.nav-link::after {
    display: none;
}

.btn-login, .btn-register {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 0.6rem 1.2rem; /* reduced padding */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* smaller font size */
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.btn-admin {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    padding: 0.6rem 1.2rem !important; /* reduced padding */
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    font-size: 0.9rem; /* smaller font size */
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.btn-assessment {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    font-size: 0.9rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-assessment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00cc66, #00ff88);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-assessment:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Add subtle glow effect */
.btn-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-assessment:hover::before {
    left: 100%;
}

.btn-preview {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    font-size: 0.9rem;
}

.btn-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, #FF1493, #FF69B4);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding-top: 150px; /* lowered content */
    min-height: 100vh;
    background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 768px) {
  .hero { padding-top: 120px; }
}

.hero-container {
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Apricots', cursive;
    font-size: 3.6rem; /* not too big */
    font-weight: 900; /* bold */
    line-height: 1.15;
    margin-bottom: 1rem;
    /* Stronger gold gradient */
    background-image: linear-gradient(180deg, #fff7bf 0%, #ffe58a 20%, #f5cd57 40%, #d4af37 65%, #a67c00 100%),
                      linear-gradient(120deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.15) 40%, rgba(255,255,255,0.75) 80%);
    background-size: 100% 100%, 300% 100%;
    background-position: center, 0% 0%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Thicker stroke and deeper shadow for bold/embossed feel */
    -webkit-text-stroke: 1.5px rgba(120, 84, 18, 0.45);
    text-shadow: 0 1px 0 rgba(255,240,204,0.95),
                 0 2px 0 rgba(238,210,126,0.95),
                 0 4px 0 rgba(215,179,77,0.9),
                 0 6px 10px rgba(0,0,0,0.45);
}

.hero-logo-large {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

/* Hero logo specific styles */
.hero-logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
    /* Debug styles */
    border: 2px solid blue; /* Temporary debug border */
    background: rgba(0, 0, 255, 0.1); /* Temporary debug background */
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FF69B4;
    border: 2px solid #FF69B4;
}

.btn-secondary:hover {
    background: #FF69B4;
    color: white;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #FF69B4;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFF0F5, #F8F0FF);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF0F5, #F8F0FF);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 2rem;
    color: white;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    /* Pink-purple gradient background */
    background: linear-gradient(135deg, #FFF0F5, #F8F0FF);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.story-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFE6F2;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.story-position {
    color: #FF69B4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.story-quote {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.story-achievement {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.achievement-item {
    background: linear-gradient(135deg, #FFF0F5, #F8F0FF);
    color: #FF69B4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Courses Section */
.courses {
    padding: 6rem 0;
    /* Hello Kitty pink gradient (reuse hero vars for consistency) */
    background: linear-gradient(135deg, var(--hero-bg-start), var(--hero-bg-end));
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.course-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-meta span {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-meta i {
    color: #FF69B4;
}

.btn-course {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-course:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    /* Hello Kitty pink gradient background */
    background: linear-gradient(135deg, var(--hero-bg-start), var(--hero-bg-end));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFE6F2;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    text-align: center;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F0FF, #FFF0F5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

.link-item i {
    font-size: 1.5rem;
    color: #FF69B4;
    width: 30px;
}

.link-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-item a:hover {
    color: #FF69B4;
}

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

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

.stat-item h3 {
    font-size: 2rem;
    color: #FF69B4;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.penganten-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.25);
    background: none;
    padding: 0;
    border: none;
}

.penganten-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 105, 180, 0.5);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FF69B4;
    width: 30px;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, #FFF0F5, #F8F0FF);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E6E6FA;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

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

.btn-submit {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F0FF, #FFF0F5);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #FFF0F5;
}

.faq-question h3 {
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: #FF69B4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #FF69B4;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-guarantee i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #FF69B4;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 80px;
    height: auto;
}

.footer-logo-2 {
    width: 80px;
    height: auto;
    margin-top: 0.5rem;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF69B4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px; /* reduced padding */
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile navigation links styling */
    .nav-link {
        padding: 0.8rem 1.5rem !important;
        margin: 0.3rem 0;
        width: 90%;
        max-width: 250px;
        display: inline-block;
        text-align: center;
    }
    
    .nav-link[href="#courses"],
    .nav-link[href="#about"],
    .nav-link[href="#contact"] {
        margin: 0.5rem auto;
    }
    
    .logo-text {
        font-size: 1.1rem; /* smaller on mobile */
    }
    
    .prodi-info {
        font-size: 10px; /* smaller on mobile */
    }
    
    .nav-logo {
        gap: 0.5rem; /* reduced gap on mobile */
        flex-direction: row; /* keep horizontal alignment on mobile */
        align-items: center;
        flex-wrap: wrap; /* allow wrapping if needed */
    }
    
    .prodi-info {
        margin-left: 0.3rem; /* reduced margin on mobile */
        margin-top: 0; /* reset margin on mobile */
    }

    /* Mobile button adjustments */
    .btn-assessment, .btn-admin, .btn-login {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem;
        margin: 0.2rem 0;
        width: 100%;
        max-width: 200px;
    }

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

    .hero-logo-img {
        width: 200px;
        height: 200px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .penganten-image {
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .stories-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

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

    .cta-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        gap: 0.3rem; /* even smaller gap for very small screens */
    }
    
    .logo-text {
        font-size: 1rem; /* smaller text for very small screens */
    }
    
    .prodi-info {
        font-size: 9px; /* smaller text for very small screens */
        margin-left: 0.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-logo-img {
        width: 150px;
        height: 150px;
    }

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

    .penganten-image {
        max-width: 100%;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* Hero grid layout */
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tweak hero logo size for desktop */
.hero-right .hero-logo-img {
    width: 420px;
    height: 420px;
}

@media (max-width: 992px) {
    .hero-right .hero-logo-img {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left { text-align: center; }
    .hero-right .hero-logo-img {
        width: 260px;
        height: 260px;
    }
}

:root {
    /* Hero background colors (adjust here easily) */
    --hero-bg-start: #FFE1F0; /* hello kitty light pink */
    --hero-bg-end: #FF9AC6;  /* hello kitty medium pink */
}

/* Logo Fallback Styles */
.logo-fallback, .hero-logo-fallback, .footer-logo-fallback, .footer-logo-2-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.logo-fallback {
    width: 50px;
    height: 50px;
    font-size: 12px;
}

.hero-logo-fallback {
    width: 200px;
    height: 200px;
    font-size: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.footer-logo-fallback, .footer-logo-2-fallback {
    width: 80px;
    height: 80px;
    font-size: 14px;
}

/* Ensure logo containers have proper positioning */
.nav-logo, .hero-logo-large, .footer-logo {
    position: relative;
}

/* Logo loading animation */
@keyframes logoPulse {
    0% { opacity: 0.8; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(0.95); }
}

.logo-fallback, .hero-logo-fallback, .footer-logo-fallback, .footer-logo-2-fallback {
    animation: logoPulse 2s ease-in-out infinite;
}

