/* 
 * Tentang Kami Page Styles
 * Main external CSS file for Sambal SSS About page
 */

:root {
    --primary-red: #B71C1C;
    --secondary-orange: #FF6F00;
    --accent-gold: #FFD700;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="surabaya-heritage" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0 L40 20 L20 40 L0 20 Z" fill="rgba(255,215,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23surabaya-heritage)"/></svg>');
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Content Styles */
.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px;
    flex-wrap: nowrap !important;
}

.logo-section {
    flex: 0 0 auto !important;
    width: auto !important;
}

.logo-section img {
    height: 150px;
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05);
}

.menu-items-col {
    flex: 0 0 auto !important;
    width: auto !important;
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .menu-lnk a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 8px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-nav .menu-lnk a:hover,
.main-nav .menu-lnk a.active {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
}

.page-title {
    text-align: center;
    margin-top: 50px;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-title p {
    color: var(--accent-gold);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    margin-top: -40px;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image {
        order: -1;
    }
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-red);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content h2 i {
    color: var(--accent-gold);
    margin-right: 15px;
}

.hero-content p {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.quote-box {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.quote-box p {
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.quote-icon {
    color: var(--accent-gold);
}

.quote-icon:first-child {
    margin-right: 10px;
}

.quote-icon:last-child {
    margin-left: 10px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFB300 100%);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

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

.experience-badge h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.experience-badge p {
    color: var(--text-dark);
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: white;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-red);
    margin-bottom: 20px;
}

.section-header h2 i {
    color: var(--accent-gold);
    margin-right: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(183, 28, 28, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="surabaya-heritage" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0 L40 20 L20 40 L0 20 Z" fill="rgba(255,215,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23surabaya-heritage)"/></svg>');
    pointer-events: none;
}

.guarantee-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 2px solid var(--accent-gold);
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.guarantee-badge h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.guarantee-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.guarantee-content h2 i {
    color: var(--accent-gold);
    margin-right: 15px;
}

.guarantee-content > p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.guarantee-feature {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,215,0,0.3);
}

.guarantee-feature i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.guarantee-feature h4 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.guarantee-feature p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.6;
}

.guarantee-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--accent-gold), #FFB300);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.guarantee-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #FFF8E1;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-red);
    margin-bottom: 20px;
}

.cta-icon {
    color: var(--accent-gold);
    margin-right: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(45deg, var(--primary-red), #8B0000);
    color: white;
    box-shadow: 0 10px 30px rgba(183, 28, 28, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 28, 28, 0.4);
}

.cta-btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-section {
        border-radius: 20px 20px 0 0;
        padding: 60px 15px;
    }
    
    .experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
    }
}

