@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #417c06;
    --secondary-color: #417c06;
    --accent-color: #d28923;
    --accent-dark: #c17a1a;
    --light-bg: #f5f1e8;
    --text-dark: #2b2b2b;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #e8e3d8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --cream-bg: #faf8f3;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.floating-wa {
    position: relative !important;
    width: 70px !important;
    height: 70px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 2.5rem !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    animation: floatWA 3s ease-in-out infinite !important;
    text-decoration: none !important;
    visibility: visible !important;
    flex-shrink: 0 !important;
}

.floating-wa:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.floating-wa-badge {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #FF0000 !important;
    color: white !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.floating-wa-container {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 99 !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.floating-hubungi {
    background: white !important;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    white-space: nowrap !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-bg);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

body {
    padding-top: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 1.8rem;
    height: 75px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 77, 45, 0.8) 0%, rgba(74, 157, 111, 0.75) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
}

.hero-decorative {
    position: absolute;
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    opacity: 0.08;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-weight: 700 !important;
}

.hero-tagline {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

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

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

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

/* Section Styling */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section h2, .main-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

section h3, .main-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 1.2rem;
    font-weight: 500;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Beranda Section */
#beranda {
    background-color: var(--cream-bg);
}

.welcome-intro {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease-out;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.welcome-intro p:last-child {
    margin-bottom: 0;
}

/* Focus Container - TABS DAN CONTENT TERPISAH */
.focus-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: stretch;
}

.focus-item {
    display: contents;
}

/* TABS - SEMUA DI ROW 1 */
/* Focus Areas Tabs - DI ATAS */
.focus-tab {
    padding: 0;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    padding-bottom: 0.8rem;
    margin: 0;
    flex: 1;
    order: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-tab:hover {
    color: var(--accent-color);
}

.focus-tab.active {
    color: var(--primary-color);
}

.focus-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

/* Focus Content - BERDIRI SENDIRI DI BAWAH */
.focus-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
    margin: 3rem auto 0;
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    order: 1;
}

.focus-content.active {
    display: block;
}

.focus-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.focus-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    flex-shrink: 0;
}

.focus-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.focus-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.focus-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Features Grid (kept for compatibility) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2.8rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    text-align: left;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    margin: 4rem 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 4rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 3rem);
    max-width: 280px;
}

.why-item:hover {
    transform: translateY(-4px);
}

/* Icon - diamond shape dengan icon di dalam */
.why-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2.5px solid var(--primary-color);
    border-radius: 8px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.icon-emoji {
    display: inline-block;
    font-size: 2rem;
    transform: rotate(-45deg);
}

.why-item:hover .why-icon {
    background: var(--primary-color);
}

/* Title */
.why-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.4;
    text-align: center;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Journey Section */
.journey {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem;
    border-radius: 16px;
    margin: 4rem 0;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.journey h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.journey p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.8;
}

.journey-path {
    font-size: 1.15rem;
    margin: 2.5rem 0;
    color: #c8e6a0;
    font-weight: 700;
    word-spacing: 0.8rem;
}

/* Journey Grid */
.journey-grid {
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 100%;
}

.journey-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.journey-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.journey-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.journey-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.journey-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.journey-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stage-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.journey-stage h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.journey-stage p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.journey-h-connector {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.journey-vertical-connectors {
    display: none;
}

.journey-vertical-connectors div {
    display: none;
}

/* Tentang Kami Section */
#tentang {
    background-color: var(--cream-bg);
}

.about-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    line-height: 1.9;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    font-size: 1.05rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 3.5rem 0;
}

.value-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem 2.8rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.value-icon {
    display: none;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Vision & Mission */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vm-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border-top: 5px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vm-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.vm-box p, .vm-box li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.vm-box ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

/* Layanan Section */
#layanan {
    background-color: var(--cream-bg);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.services-full-width {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.services-full-width .service-item {
    width: calc(50% - 1rem) !important;
    max-width: none !important;
}

.service-item {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 1.35rem);
    max-width: 340px;
}

.service-item:nth-child(2) { animation-delay: 0.1s; }
.service-item:nth-child(3) { animation-delay: 0.2s; }
.service-item:nth-child(4) { animation-delay: 0.3s; }
.service-item:nth-child(5) { animation-delay: 0.4s; }

.service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 2rem 2rem 0;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0 2rem 1rem 2rem;
    margin: 0;
}

.service-details {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.3rem;
    border-radius: 10px;
    margin: 1.3rem 2rem 2rem 2rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Galeri Section */
#galeri {
    background-color: var(--white);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover .gallery-image {
    filter: brightness(1.1);
}

/* Kontak Section */
#kontak {
    background-color: var(--cream-bg);
}

.contact-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-md);
}

.contact-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.contact-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-info {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.95rem;
}

.contact-info strong {
    color: var(--text-dark);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    grid-column: 1 / -1;
    width: 50%;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(122, 179, 66, 0.1);
    background-color: rgba(122, 179, 66, 0.02);
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #1a3003 0%, #2d5a06 100%);
    color: var(--white);
    padding: 4.5rem 2rem 2rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-social-icons {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
}

.footer-social-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
}

.footer-social-icons a:hover {
    background: var(--accent-color) !important;
    color: var(--white) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-icon {
        height: 55px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .welcome-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .welcome-intro p {
        font-size: 0.9rem;
    }

    .welcome-intro > div {
        text-align: center;
    }

    .hero {
        padding: 6rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    section, .main-section {
        padding: 3rem 1.5rem;
    }

    section h2, .main-section h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid, .services-list {
        grid-template-columns: 1fr;
    }

    .focus-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
        width: 100%;
    }

    .focus-item {
        display: block;
        margin-bottom: 0;
        width: 100%;
    }

    .focus-tab {
        font-size: 0.9rem;
        padding: 1rem 1.5rem 1rem 1rem;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin: 0;
        font-weight: 500;
        white-space: normal;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        box-sizing: border-box;
    }

    .focus-tab:hover {
        background: var(--white);
        color: var(--text-dark);
    }

    .focus-tab::after {
        content: '›';
        font-size: 1.8rem;
        color: var(--primary-color);
        transform: rotate(90deg);
        display: inline-block;
    }

    .focus-tab.active {
        background: var(--white) !important;
        color: var(--text-dark) !important;
        font-weight: 500 !important;
        border-left-color: var(--border-color) !important;
    }

    .focus-tab.active::after {
        content: '›';
        transform: rotate(-90deg);
        position: static;
        height: auto;
        background: none;
        bottom: auto;
        left: auto;
        right: auto;
        display: inline-block;
    }

    .focus-content {
        display: none;
        margin: 0;
        padding: 0;
    }

    .focus-content.active {
        display: block;
        order: 0;
    }

    .focus-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
        background: var(--cream-bg);
    }

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

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .focus-photo {
        width: 200px;
        height: 200px;
    }

    .focus-text h3 {
        font-size: 1.3rem;
        margin-top: 0;
    }

    .focus-text p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose {
        padding: 1.5rem;
        text-align: center;
    }

    .why-choose h3 {
        text-align: center;
    }

    .why-choose p {
        text-align: center;
    }

    .why-grid {
        padding: 0;
        gap: 1.5rem 0.5rem;
    }

    .why-item {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: none;
    }

    .why-item h4 {
        text-align: center;
    }

    .why-item p {
        text-align: center;
    }

    .services-list {
        gap: 1rem;
    }

    .services-list .service-item {
        width: calc(33.333% - 0.67rem);
    }

    .services-full-width {
        gap: 1rem;
    }

    .main-section > h3 {
        font-size: 1.7rem !important;
    }

    .service-item h3 {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .service-item p {
        font-size: 0.85rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .services-full-width .service-item h3 {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .services-full-width .service-item p {
        font-size: 0.85rem;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .service-details {
        margin: 1rem 1.5rem 1.5rem 1.5rem !important;
        font-size: 0.85rem;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .journey-h-connector {
        display: none;
    }

    .stage-icon {
        width: 50px;
        height: 50px;
    }

    .footer-content {
        text-align: center;
    }

    section, .main-section {
        padding-top: 5rem;
    }

    .contact-intro {
        padding: 1.5rem;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .contact-form {
        width: 80%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.75rem 1rem 1.5rem 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        height: 45px;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 1rem 6rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .welcome-intro .btn {
        width: 100%;
    }

    section h2, .main-section h2 {
        font-size: 1.8rem;
    }

    .focus-photo {
        width: 150px;
        height: 150px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-card-image {
        height: 150px;
    }

    .journey-card-content {
        padding: 1rem;
    }

    .journey {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 1.5rem 2rem;
    }

    .vm-box {
        padding: 1.5rem 2rem;
    }

    .about-intro {
        padding: 1.5rem 2rem;
    }

    section, .main-section {
        padding-top: 4rem;
    }

    .contact-intro {
        padding: 1.5rem 1.5rem;
    }

    .contact-box {
        padding: 1.5rem 1.5rem;
    }

    .contact-form {
        width: 100%;
        padding: 1.5rem 1.5rem;
    }

    .services-list {
        flex-direction: column;
    }

    .services-list .service-item {
        width: 100% !important;
        max-width: none !important;
    }

    .services-full-width .service-item {
        width: 100% !important;
        max-width: none !important;
    }

    .main-section > h3 {
        font-size: 1.3rem !important;
    }
}
