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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Navigation */
.ciptadana-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.ciptadana-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ciptadana-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.ciptadana-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.ciptadana-nav-link:hover,
.ciptadana-nav-link.active {
    color: #d4af37;
}

.ciptadana-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

.ciptadana-nav-link:hover::after,
.ciptadana-nav-link.active::after {
    width: 100%;
}

.ciptadana-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.ciptadana-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.ciptadana-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    overflow: hidden;
}

.ciptadana-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ciptadana-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.05) 50%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
}

.ciptadana-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ciptadana-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.ciptadana-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ciptadana-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.ciptadana-hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ciptadana-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ciptadana-btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.ciptadana-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.ciptadana-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.ciptadana-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

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

.ciptadana-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

/* Company Overview */
.ciptadana-overview {
    padding: 120px 0;
    background: #fafafa;
}

.ciptadana-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ciptadana-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ciptadana-overview-description {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.ciptadana-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ciptadana-stat-item {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ciptadana-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.ciptadana-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 12px;
}

.ciptadana-stat-label {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
}

.ciptadana-overview-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.ciptadana-services {
    padding: 120px 0;
    background: #ffffff;
}

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

.ciptadana-section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.ciptadana-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.ciptadana-service-card {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.ciptadana-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ciptadana-service-card:hover::before {
    transform: scaleX(1);
}

.ciptadana-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.ciptadana-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.ciptadana-service-icon i {
    font-size: 32px;
    color: #d4af37;
}

.ciptadana-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ciptadana-service-description {
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}

/* Success Stories */
.ciptadana-success {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.ciptadana-success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.ciptadana-success-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ciptadana-success-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ciptadana-success-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ciptadana-success-content {
    padding: 32px;
}

.ciptadana-success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ciptadana-success-description {
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.ciptadana-success-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ciptadana-metric {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Testimonials */
.ciptadana-testimonials {
    padding: 120px 0;
    background: #ffffff;
}

.ciptadana-testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.ciptadana-testimonial-item {
    text-align: center;
}

.ciptadana-testimonial-content {
    background: #fafafa;
    padding: 64px 48px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ciptadana-testimonial-content::before {
    content: '"';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #d4af37;
    font-family: serif;
    font-weight: 300;
}

.ciptadana-testimonial-text {
    font-size: 1.125rem;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 400;
}

.ciptadana-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ciptadana-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
}

.ciptadana-author-name {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.ciptadana-author-title {
    color: #666666;
    font-size: 0.875rem;
    font-weight: 400;
}

/* CTA Section */
.ciptadana-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ciptadana-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
}

.ciptadana-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ciptadana-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ciptadana-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

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

/* Footer */
.ciptadana-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 40px;
}

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

.ciptadana-footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.ciptadana-footer-description {
    color: #999999;
    line-height: 1.6;
    margin-top: 16px;
    font-weight: 400;
}

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

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

.ciptadana-footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.ciptadana-footer-links a:hover {
    color: #d4af37;
}

.ciptadana-footer-contact p {
    color: #999999;
    margin-bottom: 8px;
    line-height: 1.6;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ciptadana-footer-contact i {
    color: #d4af37;
    font-size: 14px;
    width: 16px;
}

.ciptadana-footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 32px;
    text-align: center;
    color: #666666;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ciptadana-nav-menu {
        display: none;
    }
    
    .ciptadana-nav-toggle {
        display: flex;
    }
    
    .ciptadana-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .ciptadana-hero-title {
        font-size: 2.5rem;
    }
    
    .ciptadana-overview-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ciptadana-stats {
        grid-template-columns: 1fr;
    }
    
    .ciptadana-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ciptadana-success-grid {
        grid-template-columns: 1fr;
    }
    
    .ciptadana-cta-title {
        font-size: 2rem;
    }
    
    .ciptadana-hero-buttons,
    .ciptadana-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ciptadana-container {
        padding: 0 16px;
    }
    
    .ciptadana-section-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c19b2e, #d4af37);
}
