/* ===================================
   Kredione - Modern CSS Stylesheet
   =================================== */

/* === CSS Variables === */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-light: #f3f4f6;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

ul, ol {
    list-style-position: inside;
}

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

/* === Header & Navigation === */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--border-radius);
}

.btn-contact:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #2d5016 0%, #2d5016 100%);
    color: var(--bg-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-item i {
    font-size: 2rem;
    color: #fbbf24;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero-image-placeholder i {
    font-size: 8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-white-small {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-white-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* === Sections === */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* === Quick Access === */
.quick-access {
    background: var(--bg-gray);
}

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

.quick-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.quick-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quick-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.quick-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-link:hover {
    gap: 1rem;
}

/* === Features === */
.features {
    background: var(--bg-white);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-gray);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

/* === How It Works === */
.how-it-works {
    background: var(--bg-gray);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-gray);
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* === Testimonials === */
.testimonials {
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* === Contact Section === */
.contact {
    background: var(--bg-gray);
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-details span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* === Footer === */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--bg-white);
}

.breadcrumb i {
    font-size: 0.7rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === Content Layout === */
.content-section {
    padding: 3rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content {
    max-width: 100%;
}

.content-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* === Info Boxes === */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.info-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-warning {
    background: #fff7ed;
    border-color: var(--warning);
    color: #92400e;
}

.info-warning i {
    color: var(--warning);
}

.info-success {
    background: #f0fdf4;
    border-color: var(--success);
    color: #14532d;
}

.info-success i {
    color: var(--success);
}

.info-box strong {
    display: block;
    margin-bottom: 0.5rem;
}

/* === Checklist === */
.checklist {
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.checklist-item i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.checklist-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.checklist-item p {
    margin: 0;
    color: var(--text-gray);
}

/* === Vertical Steps === */
.steps-vertical {
    margin: 2rem 0;
}

.step-vertical {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-vertical:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--border-color);
}

.step-number-vertical {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.step-content-vertical {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content-vertical h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-content-vertical p {
    margin-bottom: 0.8rem;
}

.step-content-vertical ul {
    padding-left: 1.5rem;
}

.step-content-vertical ul li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

/* === Method Grid === */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.method-card p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.method-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--danger);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.method-badge-blue {
    background: var(--info);
}

.method-badge-gray {
    background: var(--text-gray);
}

.method-badge-green {
    background: var(--success);
}

/* === Table === */
.table-responsive {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.info-table thead {
    background: var(--bg-gray);
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.info-table td {
    color: var(--text-gray);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* === Sidebar === */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-link {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sidebar-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(5px);
}

.sidebar-link i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-link strong {
    display: block;
    margin-bottom: 0.2rem;
}

.sidebar-link span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.8rem;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.sidebar-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.sidebar-tips {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
}

.sidebar-tips i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sidebar-tips h3,
.sidebar-tips p {
    color: var(--bg-white);
}

/* === CTA Card === */
.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-content i {
    font-size: 3rem;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === Quick Contact Banner === */
.quick-contact-banner {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 0;
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.quick-contact-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.quick-contact-text i {
    font-size: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
}

/* === FAQ === */
.faq-search {
    padding: 2rem 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.faq-categories {
    background: var(--bg-gray);
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.faq-category-section {
    margin-bottom: 3rem;
}

.faq-section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-btn:hover {
    background: var(--bg-gray);
}

.faq-question-btn span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-question-btn span i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question-btn > i {
    transition: transform 0.3s ease;
}

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

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer-content {
    max-height: 1000px;
}

.faq-answer-content > * {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.faq-answer-content ol,
.faq-answer-content ul {
    padding-left: 3rem;
    color: var(--text-gray);
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

/* === CS Page Specific === */
.cs-hero {
    background: var(--bg-gray);
    padding: 3rem 0;
}

.cs-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--success);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cs-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cs-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.cs-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.cs-stat span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cs-image-placeholder {
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
}

.cs-image-placeholder i {
    font-size: 8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-methods {
    padding: 4rem 0;
}

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

.method-card-large {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.method-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-gray);
}

.method-icon-large {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 2rem;
    flex-shrink: 0;
}

.method-icon-whatsapp {
    background: #25d366;
}

.method-icon-email {
    background: #ea4335;
}

.method-icon-app {
    background: #667eea;
}

.method-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.method-status {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--bg-white);
    color: var(--text-gray);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.method-status.active {
    background: #d1fae5;
    color: #065f46;
}

.method-body {
    padding: 2rem;
}

.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.contact-detail:last-of-type {
    margin-bottom: 1rem;
}

.contact-detail strong {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-value {
    color: var(--text-dark);
    font-weight: 600;
}

.method-desc {
    color: var(--text-gray);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.cs-services {
    background: var(--bg-gray);
}

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

.service-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.tips-section {
    background: var(--bg-white);
}

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

.tip-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    padding-top: 4rem;
}

.tip-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
}

.tip-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-card ul {
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.tip-card ul li {
    margin-bottom: 0.5rem;
}

.faq-cs {
    background: var(--bg-gray);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.emergency-contact {
    background: var(--bg-white);
}

.emergency-card {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: start;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: var(--danger);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.emergency-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.emergency-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.emergency-contacts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--danger);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.emergency-button:hover {
    background: var(--danger);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.emergency-button i {
    font-size: 2rem;
}

.emergency-button strong {
    display: block;
    margin-bottom: 0.2rem;
}

.emergency-button span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.office-location {
    background: var(--bg-gray);
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.office-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.office-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.office-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.office-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.office-detail i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.office-map {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    background: var(--bg-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    color: var(--text-gray);
}

.cta-section {
    background: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .cta-buttons {
    justify-content: center;
}

/* === About Page Specific === */
.about-intro {
    padding: 4rem 0;
}

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

.about-image-placeholder {
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
}

.about-image-placeholder i {
    font-size: 8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-intro-text p {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.highlight-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.vision-mission {
    background: var(--bg-gray);
    padding: 4rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vm-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.mission-list li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.values-section {
    background: var(--bg-white);
}

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

.value-card {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-gray);
}

.achievements {
    background: var(--bg-gray);
}

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

.achievement-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.why-choose {
    background: var(--bg-white);
}

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

.why-item {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.team-section {
    background: var(--bg-gray);
}

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

.team-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    background: var(--bg-gray);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 4rem;
}

.team-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-gray);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

.licenses {
    background: var(--bg-white);
}

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

.license-card {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.license-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.license-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.license-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .content-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        display: none;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
    }
    
    .hero-content,
    .cs-hero-content,
    .about-intro-content,
    .vm-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-card,
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons,
    .quick-contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-contacts {
        flex-direction: column;
        width: 100%;
    }
    
    .emergency-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .quick-access-grid,
    .features-grid,
    .methods-grid {
        grid-template-columns: 1fr;
    }
}