/* ========================================
   ARSITEKA LIVING STUDIO - MAIN STYLESHEET
   Modern Minimalist Architecture Design
   ======================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Sage Green & Cream */
    --primary-sage: #8a9a7b;
    --primary-dark: #6b7a5e;
    --cream: #f5f1e8;
    --cream-dark: #e8e2d5;
    --white: #ffffff;
    --off-white: #fafaf8;
    --gray-light: #e5e5e0;
    --gray-mid: #b8b8b0;
    --gray-dark: #5a5a52;
    --black: #2a2a25;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-sage);
    margin-top: -4px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-sage);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background-color: var(--primary-sage);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 2px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 42, 37, 0.7) 0%, rgba(138, 154, 123, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 154, 123, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-sage);
    border-color: var(--primary-sage);
}

.btn-outline:hover {
    background-color: var(--primary-sage);
    color: var(--white);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* === STATISTICS SECTION === */
.statistics {
    padding: 60px 0;
    background-color: var(--cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-sage);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-dark);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-sage);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* === FEATURED PROJECTS === */
.featured-projects {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.project-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 154, 123, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.project-info {
    padding: 30px;
}

.project-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-sage);
    margin-bottom: 12px;
    font-weight: 600;
}

.project-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.project-description {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-mid);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: var(--gray-mid);
}


/* === PAGE HEADER === */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    font-weight: 300;
}

/* === ABOUT PAGE === */
.story-section {
    padding: var(--section-padding);
}

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

.story-image {
    border-radius: 4px;
    overflow: hidden;
}

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

.story-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--black);
}

.story-content p {
    margin-bottom: 20px;
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.9;
}

/* Vision Mission */
.vision-mission {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vm-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 4px;
}

.vm-icon {
    color: var(--primary-sage);
    margin-bottom: 24px;
}

.vm-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-dark);
}

.vm-card ul {
    list-style: none;
}

.vm-card ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-dark);
}

.vm-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-sage);
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--cream-dark);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--black);
}

.value-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--black);
}

.member-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-sage);
    margin-bottom: 12px;
    font-weight: 600;
}

.member-bio {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* === SERVICES PAGE === */
.services-section {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    gap: 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.service-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-card:nth-child(even) .service-image {
    order: 2;
}

.service-image {
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
}

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

.service-content {
    padding: 20px 0;
}

.service-icon {
    color: var(--primary-sage);
    margin-bottom: 20px;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--black);
}

.service-content > p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: 700;
}

.service-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-sage);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--cream);
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 60px 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.faq-question:hover {
    background-color: var(--cream);
}

.faq-icon {
    position: absolute;
    right: 28px;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--gray-dark);
}

/* === PORTFOLIO PAGE === */
.portfolio-section {
    padding: var(--section-padding);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: none;
    border: 2px solid var(--gray-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition);
    color: var(--gray-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-item:hover {
    transform: translateY(-8px);
}

.portfolio-item .portfolio-image {
    height: 350px;
    overflow: hidden;
}

.portfolio-item .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 24px;
    background-color: var(--white);
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--black);
}

.portfolio-info p {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 12px;
}

.portfolio-category {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-sage);
    font-weight: 600;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-sage);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 16px;
}


/* === PROCESS PAGE === */
.process-timeline {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-sage), var(--cream-dark));
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: relative;
}

.timeline-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--primary-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-sage);
    position: relative;
    z-index: 1;
}

.timeline-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-icon {
    color: var(--primary-sage);
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--black);
}

.timeline-duration {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-sage);
    margin-bottom: 16px;
    font-weight: 600;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.timeline-checklist {
    list-style: none;
}

.timeline-checklist li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-dark);
}

.timeline-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: 700;
}

.process-info {
    padding: 60px 0;
    background-color: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--black);
}

.info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* === BLOG PAGE === */
.blog-section {
    padding: var(--section-padding);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 60px;
}

.blog-image {
    height: 400px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-sage);
    font-weight: 600;
}

.blog-date {
    font-size: 11px;
    color: var(--gray-mid);
    letter-spacing: 1px;
}

.blog-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.3;
}

.blog-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.blog-readmore {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-sage);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    transition: var(--transition);
}

.blog-readmore:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Sidebar */
.sidebar-widget {
    background-color: var(--white);
    padding: 32px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

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

.category-list li {
    border-bottom: 1px solid var(--gray-light);
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-sage);
    padding-left: 8px;
}

.category-list span {
    color: var(--gray-mid);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    transition: var(--transition);
}

.popular-post:hover {
    transform: translateX(4px);
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.popular-post h4 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
    color: var(--black);
}

.popular-post span {
    font-size: 12px;
    color: var(--gray-mid);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    padding: 8px 16px;
    background-color: var(--cream);
    font-size: 12px;
    border-radius: 20px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-sage);
    color: var(--white);
}

/* === CONTACT PAGE === */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
}

.info-icon {
    color: var(--primary-sage);
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--black);
}

.info-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-dark);
}

.quick-contact {
    margin-top: 20px;
}

.quick-contact h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    margin-bottom: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

.email-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-form > p {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    transition: var(--transition);
    background-color: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-sage);
    background-color: var(--white);
}

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

.error-message {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--cream);
    border-radius: 4px;
}

.form-success svg {
    margin: 0 auto 20px;
    color: var(--primary-sage);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--black);
}

.form-success p {
    font-size: 14px;
    color: var(--gray-dark);
}

/* Map Section */
.map-section {
    margin-top: 80px;
}

.map-section iframe {
    display: block;
    width: 100%;
    filter: grayscale(30%);
}

/* === FOOTER === */
.footer {
    background-color: var(--black);
    color: var(--cream);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-mid);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray-mid);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-sage);
    padding-left: 4px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    font-size: 14px;
    color: var(--gray-mid);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-sage);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-mid);
}

/* Footer Variations */
.footer-home .footer-quote {
    text-align: center;
    margin-bottom: 60px;
}

.footer-quote blockquote {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-quote cite {
    font-size: 14px;
    color: var(--gray-mid);
}

.footer-cta-section {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-section h3 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-cta-section p {
    font-size: 16px;
    color: var(--gray-mid);
    margin-bottom: 28px;
}

.footer-philosophy {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.footer-philosophy h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-philosophy blockquote {
    font-size: 16px;
    line-height: 1.9;
    font-style: italic;
    color: var(--gray-mid);
}

.process-steps-mini {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.mini-step {
    text-align: center;
}

.mini-number {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background-color: var(--primary-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.mini-step p {
    font-size: 12px;
    color: var(--gray-mid);
}

.footer-software {
    margin-bottom: 60px;
    text-align: center;
}

.footer-software h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--white);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

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

.software-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--white);
}

.software-item p {
    font-size: 12px;
    color: var(--gray-mid);
}

.footer-duration {
    margin-bottom: 60px;
}

.footer-duration h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
}

.duration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.duration-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
}

.duration-item h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
}

.duration-time {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-sage);
    margin-bottom: 8px;
}

.duration-desc {
    font-size: 12px;
    color: var(--gray-mid);
}

.duration-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-mid);
    font-style: italic;
}

.footer-newsletter {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.footer-newsletter h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--gray-mid);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--gray-mid);
}

.newsletter-form button {
    padding: 14px 32px;
    background-color: var(--primary-sage);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-contact-cta {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-cta h3 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-contact-cta p {
    font-size: 16px;
    color: var(--gray-mid);
    margin-bottom: 28px;
}

.btn-whatsapp {
    background-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}


/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .stats-grid,
    .projects-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid,
    .service-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card:nth-child(even) .service-image {
        order: 0;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .software-grid,
    .duration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 12px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    /* Page Header */
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-title {
        font-size: 38px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    /* Statistics */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Projects Grid */
    .projects-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Timeline */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .timeline-content {
        padding: 28px;
    }
    
    .timeline-content h3 {
        font-size: 26px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Blog */
    .blog-image {
        height: 250px;
    }
    
    .blog-content {
        padding: 28px;
    }
    
    .blog-content h2 {
        font-size: 26px;
    }
    
    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-form h2 {
        font-size: 28px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 20px;
        margin-top: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .footer-quote blockquote {
        font-size: 22px;
    }
    
    .footer-cta-section h3,
    .footer-philosophy h3,
    .footer-software h3,
    .footer-duration h3,
    .footer-newsletter h3,
    .footer-contact-cta h3 {
        font-size: 28px;
    }
    
    .software-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .duration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps-mini {
        gap: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .project-info,
    .timeline-content,
    .blog-content {
        padding: 20px;
    }
    
    .project-title,
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden {
    display: none;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === LOADING STATES === */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-cta,
    .section-cta,
    .footer {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .page-header {
        padding: 40px 0 20px;
    }
}

/* === SMOOTH SCROLLING PERFORMANCE === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* === FIX AREA BERANTAKAN === */

/* 1. Perbaikan Story & Vision Mission agar tidak tumpang tindih */
@media (max-width: 992px) {
    .story-grid, .vm-grid, .service-card {
        grid-template-columns: 1fr !important; /* Menjadi satu kolom */
        gap: 30px;
    }
    
    .story-image {
        height: 300px; /* Batasi tinggi gambar agar tidak terlalu panjang */
    }
}

/* 2. Perbaikan Navigasi Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 40px;
        transition: 0.4s;
        display: flex; /* Memastikan menu muncul saat class .active ditambah */
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex !important; /* Memastikan tombol burger muncul */
    }

    /* Merapikan Team Grid & Values agar tidak gepeng */
    .team-grid, .values-grid, .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
}