/* assets/css/style.css - Premium Orange Theme */

/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f6f3;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ========== COLOR VARIABLES ========== */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85D2C;
    --primary-light: #F97316;
    --primary-gradient: linear-gradient(135deg, #FF6B35, #E85D2C);
    --primary-gradient-light: linear-gradient(135deg, #FF6B35, #F97316);
    
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --white: #FFFFFF;
    --off-white: #F8F6F3;
    --gray: #F5F5F5;
    --gray-dark: #6B7280;
    --text: #333333;
    --text-light: #6B7280;
    
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.08);
    --shadow-md: 0 8px 30px rgba(255, 107, 53, 0.12);
    --shadow-lg: 0 20px 60px rgba(255, 107, 53, 0.15);
    --shadow-xl: 0 30px 80px rgba(255, 107, 53, 0.20);
    
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    background: var(--primary-gradient);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--dark);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ========== CARDS ========== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ========== SECTION STYLES ========== */
.section-bg {
    background: var(--off-white);
}

.section-bg-gradient {
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 107, 53, 0.10);
    color: var(--primary);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== BACKGROUND GRADIENT ========== */
.bg-gradient-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #E85D2C 50%, #F97316 100%);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }
    
    .card {
        padding: 20px;
    }
}