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

:root {
    --primary-color: #FFC107;
    --dark-color: #2C2C2C;
    --light-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --light-color: #1a1a1a;
    --bg-light: #242424;
    --text-dark: #E0E0E0;
    --text-light: #B0B0B0;
    --dark-color: #E0E0E0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
    transition: var(--transition);
    overflow-x: hidden;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--light-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary-color);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon,
body:not([data-theme]) .moon-icon {
    display: none;
}

.cart-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.2);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 60px;
    padding-bottom: 10rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 2rem;
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-color);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
}

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

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    margin: 2rem auto;
    display: block;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--light-color);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 5rem 0;
    background: #2C2C2C;
    margin-top: -8rem;
    position: relative;
    z-index: 10;
}

[data-theme="light"] .services {
    background: #FFFFFF;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #3a3a3a;
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

[data-theme="light"] .service-card {
    background: #F9F9F9;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    border-color: var(--primary-color);
    background: #444444;
}

[data-theme="light"] .service-card:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

[data-theme="light"] .service-card h3 {
    color: #333333;
}

.service-card p {
    color: #B0B0B0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

[data-theme="light"] .service-card p {
    color: #666666;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 5rem 0;
    background: var(--light-color);
    position: relative;
    z-index: 5;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.features-left {
    background: var(--primary-color);
    padding: 3rem 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInLeft 0.8s ease;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.vision-header {
    margin-bottom: 1.5rem;
}

.vision-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.vision-text {
    color: var(--dark-color);
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0;
}

.feature-icon {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Vision & Mission styling on yellow box */
.vision-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.vision-title {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.vision-text {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.features-left,
.features-left .vision-title,
.features-left .vision-text,
.features-left .feature-icon,
.features-left .feature-content h3,
.features-left .feature-content p {
    color: #111111 !important;
}

.features-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInRight 0.8s ease;
    line-height: 1.3;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.divider-center {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 3rem;
}

.features-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.features-text p:last-child {
    margin-bottom: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    background: #2C2C2C;
    padding: 3rem 0;
}

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

.cta h2 {
    color: #FFFFFF;
    font-size: 2rem;
}

.cta .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

.project-card {
    background: var(--light-color);
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border: 1px solid #e0e0e0;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-content {
    padding: 2rem;
}

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

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-link {
    background: none;
    border: 1px solid var(--text-dark);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.btn-link:hover {
    background: var(--text-dark);
    color: white;
}

/* ===================================
   PROJECT PAGE ENHANCEMENTS
   =================================== */
.projects-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920') center/cover;
    padding-bottom: 6rem;
}

.eyebrow {
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.4rem;
}

.stat-label {
    color: #f3f3f3;
    font-size: 0.95rem;
    opacity: 0.9;
}

.project-filter {
    padding: 3rem 0 1rem;
    background: var(--light-color);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.filter-copy {
    color: var(--text-light);
    max-width: 640px;
    margin-top: 0.5rem;
    line-height: 1.7;
}

.filter-chips {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.chip {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--text-dark);
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.chip:hover,
.chip.active {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.project-gallery {
    padding: 1rem 0 5rem;
    background: var(--bg-light);
}

.project-grid-extended {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.project-image {
    position: relative;
}

.project-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.project-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--text-light);
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .badge {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.05);
}

.badge.status {
    border: none;
    color: var(--dark-color);
}

.badge.status.complete {
    background: #b8f5c8;
}

.badge.status.progress {
    background: #ffe7ab;
}

.badge.status.planned {
    background: #dbe2ff;
}

.badge.pill {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.4);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.project-year {
    font-weight: 700;
    color: var(--text-dark);
}

.project-cta {
    background: var(--light-color);
    padding: 4rem 0 5rem;
}

.project-cta-card {
    background: #2c2c2c;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.project-cta-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.project-cta-card p {
    color: #d7d7d7;
    margin: 0;
    line-height: 1.7;
}

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

/* ===================================
   QUOTE SECTION
   =================================== */
.quote-section {
    background: var(--primary-color);
    padding: 3rem 0;
}

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

.quote-box h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.phone {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.faq-list {
    background: var(--light-color);
    padding: 2rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: bold;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

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

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 5rem 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    border-radius: 5px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.author {
    font-weight: bold;
    color: var(--text-dark);
    font-style: normal !important;
    font-size: 1rem;
}

/* Modifikasi .partners-grid, PASTIKAN INI 4 KOLOM */
.partners-grid {
    display: grid;
    /* Ini akan membuat 4 kolom dan 2 baris untuk 8 logo */
    grid-template-columns: repeat(4, 1fr); 
    gap: 3rem 2rem; 
    align-items: center;
}

/* Styling untuk Wadah Logo (Kunci Kerapian Vertikal dan Horizontal) */
.partner-logo {
    height: 100px; /* Tinggi seragam untuk semua wadah */
    display: flex; 
    justify-content: center; /* Rata tengah horizontal */
    align-items: center; /* Rata tengah vertikal */
    box-sizing: border-box; 
    font-size: 0;
    transition: var(--transition);
    cursor: pointer;
}

/* Styling untuk Gambar di dalam Wadah (Kunci Kerapian Ukuran) */
.partner-logo img {
    max-width: 90%; 
    max-height: 80px; /* Batasi tinggi gambar */
    width: auto;
    height: auto;
    object-fit: contain; /* Cegah distorsi */
    
    /* Efek Visual */
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: all 0.3s ease; 
}

/* Efek Hover */
.partner-logo:hover img {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background: var(--light-color);
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
    background: var(--primary-color);
    padding: 3rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    background: white;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--dark-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-info {
    background: #2C2C2C;
    padding: 3rem;
    color: #FFFFFF;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #FFFFFF;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #E6E6E6;
    padding: 4rem 0 2.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-desc {
    color: #C9C9C9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.25);
}

.footer-links h4,
.footer-contact h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: #DADADA;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contact ul li {
    color: #DADADA;
    line-height: 1.6;
}

.footer-cta {
    margin-top: 0.5rem;
    border-color: #E6E6E6;
    color: #E6E6E6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #B8B8B8;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom a {
    color: #DADADA;
    text-decoration: none;
    transition: var(--transition);
}

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

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0d0d0d, #161616);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* ===================================
   RESPONSIVE: TABLET LANDSCAPE (1024px)
   =================================== */
@media (max-width: 1024px) {
    .features-wrapper,
    .about-wrapper,
    .faq-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-title {
        font-size: 2.8rem;
    }

    .cta-content,
    .quote-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .project-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-header {
        flex-direction: column;
    }

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

/* ===================================
   RESPONSIVE: TABLET PORTRAIT (768px)
   =================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .features-right h2,
    .about-content h2,
    .faq-content h2 {
        font-size: 2rem;
    }

    .features-left {
        padding: 2rem;
    }

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

    .about-image img {
        height: 300px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

/* ===================================
   RESPONSIVE: MOBILE (375px)
   =================================== */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .project-image {
        height: 200px;
    }

    .project-content,
    .about-content,
    .faq-content {
        padding: 1.5rem;
    }

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

    .contact-form-section,
    .contact-info {
        padding: 2rem 1.5rem;
    }

    .faq-list {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer {
        text-align: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===================================
   RESPONSIVE: LARGE DESKTOP (1440px)
   =================================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .services-grid,
    .projects-grid,
    .testimonials-grid {
        gap: 3rem;
    }
}

/* ===================================
   RESPONSIVE: EXTRA LARGE (1920px+)
   =================================== */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}
