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

:root {
  --primary-green: #114a31;
  --header-green: #156241;
  --hover-green: #1b8054;
  --footer-green: #0d3423;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-color: #ffffff;
  --section-bg: #f9fbfb;
  --border-color: #eaeaea;
  --accent-gold: #c6a87c;
  --danger-red: #ff0000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background-color: var(--bg-color); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; color: var(--text-dark); }

/* --- SS 4 TOP BAR --- */
.top-bar {
  background-color: var(--primary-green);
  color: #c4d7cd;
  font-size: 0.8rem;
  padding: 8px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 300;
  display: flex;
  justify-content: space-between;
}
.top-bar-container { width: 100%; display: flex; justify-content: space-between; align-items: center;}
.tb-left, .tb-right { display: flex; gap: 20px; align-items: center; }
.top-bar i { margin-right: 5px; color: #fff; font-size: 0.85rem;}
.top-sep { opacity: 0.3; }

/* --- SS 4 HEADER --- */
header {
  background-color: var(--primary-green);
  padding: 15px 5%;
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  align-items: center;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  min-width: max-content;
}
.logo img { height: 60px; filter: brightness(0) invert(1); transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  line-height: 1.1;
}
.brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  display: block;
  opacity: 0.8;
}


nav > ul { display: flex; gap: 30px; align-items: center; }
nav > ul > li { position: relative; padding: 10px 0; }
nav > ul > li > a { font-size: 0.85rem; font-weight: 500; color: #fff; text-transform: uppercase; }
nav > ul > li > a:hover { color: #ccc; }

.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.25s ease; z-index: 100; border-top: 3px solid var(--header-green);
}
nav > ul > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { border-bottom: 1px solid #f2f2f2; }
.dropdown-menu li a { display: block; padding: 12px 20px; color: var(--text-dark); font-size: 0.85rem; text-transform: none; }
.dropdown-menu li a:hover { background: #f9f9f9; color: var(--header-green); padding-left: 25px; }

.header-btn { margin-left: auto; border: 1px solid #fff; color: #fff; padding: 8px 20px; border-radius: 4px; font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; }
.header-btn:hover { background-color: #fff; color: var(--primary-green); }

/* --- MIXED HERO (First Iteration feel + Engineer Box) --- */
.hero {
  position: relative;
  min-height: 85vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  background-color: #111;
}
.hero-bg-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4; 
}
.hero-content {
  position: relative; z-index: 2; max-width: 900px; color: white;
}
.hero h1 { font-size: 4rem; font-weight: 700; color: white; margin-bottom: 20px; line-height: 1.1; }
.hero h1 span { color: var(--accent-gold); }
.hero p { font-size: 1.2rem; font-weight: 300; margin-bottom: 40px; color: #ddd; }
.btn-primary { background: white; color: var(--primary-green); padding: 15px 35px; border-radius: 4px; font-weight: 600; font-size: 1rem; }
.btn-primary:hover { background: var(--accent-gold); color: white; }

/* The Engineer Floating Box */
.hero-engineer-card {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    z-index: 100;
    width: 90%;
    max-width: 800px;
    text-align: left;
    border-top: 5px solid var(--primary-green);
}
.hero-engineer-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; }
.hero-engineer-card .quote-icon { font-size: 2rem; color: #eee; margin-right: 10px; }
.hero-engineer-card h4 { color: var(--primary-green); font-size: 1.1rem; font-weight: 600; margin-bottom: 2px;}
.hero-engineer-card p.title { color: var(--accent-gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px;}
.hero-engineer-card p.quote { color: var(--text-gray); font-size: 0.95rem; margin: 0; font-style: italic; line-height: 1.5; border-left: 3px solid var(--accent-gold); padding-left: 15px;}

/* --- RESTORED VIDEO SECTION --- */
.video-section { display: flex; padding: 160px 5% 100px 5%; background: var(--section-bg); gap: 60px; align-items: center; position: relative; z-index: 1;}
.video-text { flex: 1; }
.video-text h2 { font-size: 2.5rem; font-weight: 600; color: #222; margin-bottom: 20px;}
.video-text .subtitle { font-size: 1.1rem; color: var(--primary-green); border-left: 2px solid var(--accent-gold); padding-left: 15px; margin-bottom: 25px; font-weight: 500;}
.video-text p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.video-actions { display: flex; gap: 20px; margin-top: 30px; }
.btn-green { background: var(--primary-green); color: white; padding: 12px 25px; border-radius: 4px; font-weight: 500; }
.btn-green:hover { background: var(--hover-green); color: white;}
.btn-outline { background: transparent; border: 1px solid var(--primary-green); color: var(--primary-green); padding: 12px 25px; border-radius: 4px; font-weight: 500; }
.btn-outline:hover { background: var(--primary-green); color: white; }
.video-player { flex: 1; background: url('../images/f37c6ace-858b-4bfd-97a0-46553ef261e8.jpeg') center/cover; height: 400px; border-radius: 12px; position: relative; border-left: 10px solid var(--primary-green); box-shadow: 0 15px 40px rgba(0,0,0,0.15);}
.video-player::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(17,74,49,0.3); border-radius: 12px;}
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary-green); z-index: 2; cursor: pointer; transition: transform 0.3s;}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.video-overlay-text { position: absolute; bottom: 20px; left: 30px; color: white; z-index: 2; font-weight: 600; font-size: 1.2rem; letter-spacing: 1px;}

.real-video { height: 400px; border-left: 10px solid var(--primary-green); }

/* --- ENGINEER CARD --- */
.engineer-section { padding: 80px 5%; background: var(--section-bg); display: flex; justify-content: center; border-bottom: 1px solid #eaeaea; }
.engineer-card { background: #fff; width: 100%; max-width: 950px; padding: 40px 50px; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 50px; border-left: 8px solid var(--primary-green); }
.engineer-profile-img { width: 220px; height: 220px; border-radius: 24px; object-fit: cover; box-shadow: 0 15px 35px rgba(0,0,0,0.12); flex-shrink: 0; }
.engineer-card h4 { color: var(--primary-green); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.engineer-card .title { color: var(--accent-gold); font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
.engineer-card .quote { color: var(--text-gray); font-size: 1.2rem; font-style: italic; line-height: 1.7; margin: 0; outline: none; }

/* --- HİZMETLERİMİZ --- */
.hizmetler-section { padding: 80px 5%; text-align: center; background: #fff;}
.hizmetler-section h2 { font-size: 2.2rem; color: #222; margin-bottom: 50px; }
.hz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hz-card { position: relative; padding-bottom: 25px; overflow: hidden; border-radius: 12px;}
.hz-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: transform 0.4s ease; }
.hz-card video { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: transform 0.4s ease; background:#000; }
.hz-card:hover img, .hz-card:hover video { transform: scale(1.05); }
.hz-title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    width: 85%;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: #222;
}

/* --- RESTORED COMPLETED PROJECTS --- */
.completed-projects { padding: 100px 5%; background: white; }
.cp-header { text-align: center; margin-bottom: 50px; }
.cp-header h2 { font-size: 2.2rem; color: #222; margin-bottom: 15px;}
.cp-header p { color: #666; font-size: 1rem; }
.cp-slider-wrapper { display: flex; align-items: center; gap: 15px; position: relative;}
.cp-slider-btn { background: #fff; width: 45px; height: 45px; border-radius: 50%; color: var(--primary-green); border: 1px solid #ccc; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; flex-shrink: 0; }
.cp-slider-btn:hover { background: var(--primary-green); color: #fff; border-color: var(--primary-green); }
.cp-grid { display: flex; gap: 30px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding-bottom: 20px; flex: 1; -ms-overflow-style: none; scrollbar-width: none;}
.cp-grid::-webkit-scrollbar { display: none; }
.cp-card { flex: 0 0 calc(33.333% - 20px); scroll-snap-align: start; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.3s ease, box-shadow 0.3s ease;}
.cp-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.cp-card img, .cp-card video { width: 100%; height: 260px; object-fit: cover; }
.cp-info { padding: 25px; text-align: center; }
.cp-info p { color: #777; font-size: 1.05rem; margin: 0; font-weight: 500;}
.cp-info i { color: var(--accent-gold); margin-right: 5px; }

@media (max-width: 768px) {
    /* TOP BAR */
    .top-bar { font-size: 0.7rem; padding: 8px 5%; }
    .top-bar-container { flex-direction: column; gap: 8px; text-align: center; }
    .tb-left, .tb-right { flex-direction: row; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .tb-left span, .tb-right span { margin: 0; }
    .tb-left span:last-child { display: none; } /* Hide clock */
    .tb-right span:last-child { display: none; } /* Hide Bakanlik no */
    .top-sep { display: none; }

    /* HEADER & NAV - App-like look */
    header { display: block; padding: 15px 5%; }
    .logo { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; text-decoration: none; }
    .logo img { height: 40px; display: block; margin: 0; }
    .logo-text { text-align: left; display: flex; flex-direction: column; line-height: 1.1; }
    .brand-name { font-size: 1.2rem; font-weight: 800; color: #fff; }
    .brand-sub { font-size: 0.55rem; font-weight: 600; color: #fff; letter-spacing: 1.5px; opacity: 0.8; }
    .header-btn { display: none; } 
    
    nav { width: 100%; overflow-x: auto; white-space: nowrap; -ms-overflow-style: none; scrollbar-width: none; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 15px; padding-top: 15px;}
    nav::-webkit-scrollbar { display: none; }
    nav > ul { display: flex; width: max-content; gap: 12px; margin: 0 auto; justify-content: center; padding: 0 5%;}
    nav > ul > li { padding: 0; }
    nav > ul > li > a { font-size: 0.8rem; font-weight: 500; background: rgba(255,255,255,0.1); padding: 8px 18px; border-radius: 20px; text-transform: capitalize; letter-spacing: 0.5px;}
    nav > ul > li > a:hover { background: var(--accent-gold); color: #fff; }
    nav > ul > li > a i { display: none; }
    .dropdown-menu { display: none !important; }

    /* MAIN TYPOGRAPHY & PADDING RESETS */
    h1, h2 { line-height: 1.3; }
    
    /* ENGINEER CARD MOBILE */
    .engineer-section { padding: 100px 5% 40px 5%; }
    .engineer-card { flex-direction: column; padding: 40px 20px; text-align: center; gap: 20px; border-left: none; border-top: 8px solid var(--primary-green); position: relative; }
    .engineer-profile-img { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: 150px; height: 150px; border-radius: 20px; border: 5px solid #fff; }
    .engineer-card h4 { margin-top: 60px; }
    
    /* HERO SECTION */
    .hero { min-height: 70vh; padding: 60px 5%; display: flex; align-items: center; justify-content: center;}
    .hero-content { width: 100%; }
    .hero h1 { font-size: 2.3rem; margin-bottom: 20px; }
    .hero p { font-size: 1rem; margin-bottom: 30px; }
    .btn-primary { display: block; width: 100%; text-align: center; border-radius: 8px; font-size: 1.05rem; padding: 15px 0;}
    .hero-engineer-card { display: none !important; } 

    /* SECTIONS GENERAL */
    .hizmetler-section { padding: 60px 5%; }
    .hizmetler-section h2 { font-size: 1.8rem; margin-bottom: 30px; }
    .hz-grid { grid-template-columns: 1fr; gap: 20px;}
    .hz-card img, .hz-card video { height: 220px; }
    .hz-title { width: 90%; font-size: 0.95rem; padding: 12px 20px; }

    .completed-projects { padding: 60px 5%; }
    .cp-header h2 { font-size: 1.8rem; }
    .cp-card { flex: 0 0 calc(100% - 10px); }
    .cp-card img, .cp-card video { height: 220px; }
    .cp-info { padding: 15px; }

    .video-section { flex-direction: column; padding: 60px 5%; text-align: center; gap: 30px;}
    .video-text h2 { font-size: 1.8rem; }
    .video-text p { font-size: 0.95rem; }
    .video-actions { flex-direction: column; gap: 15px; width: 100%; margin-top: 20px;}
    .btn-green, .btn-outline { width: 100%; text-align: center; border-radius: 8px; font-size: 1rem;}
    .real-video { height: 250px; border-left: none; border-bottom: 8px solid var(--primary-green); }

    .faq-wrap { flex-direction: column; padding: 60px 5%; gap: 30px; }
    .faq-left h2 { font-size: 1.8rem; margin-bottom: 20px;}
    .faq-right img { min-height: 300px; border-radius: 12px;}

    .flag-section { padding: 80px 5%; min-height: 40vh; }
    .flag-content h2 { font-size: 1.8rem; margin-bottom: 15px; }
    .flag-content p { font-size: 0.95rem; }
    .btn-transparent { display: block; width: 100%; text-align: center; border-radius: 8px;}

    /* INSIDE PAGES */
    .inner-hero { padding: 80px 5%; }
    .inner-hero h1 { font-size: 2rem; }
    
    .inner-service-section { flex-direction: column; text-align: center; gap: 30px; padding: 60px 5%;}
    .inner-service-text h1 { font-size: 1.8rem; }
    .inner-service-img-wrap { padding: 0 !important; }
    .inner-service-img-wrap::before { display: none; }
    .inner-service-img-wrap img { border-radius: 12px; }
    .inner-service-text { padding: 0 !important; }
    
    .extra-content-section { padding: 60px 5%; }
    .extra-grid { grid-template-columns: 1fr; gap: 20px;}

    .galeri-section { flex-direction: column; padding: 60px 5%; gap: 30px;}
    .galeri-grid { grid-template-columns: 1fr; gap: 15px; }
    .galeri-card { padding: 30px 20px; border-width: 4px;}
    .galeri-card h2 { font-size: 1.8rem; }

    .video-gallery-section { padding: 60px 5% !important; margin-top: 0 !important; border-radius: 0 !important; }
    .video-gallery-section h2 { font-size: 1.8rem !important; }
    .video-gallery-section > div { grid-template-columns: 1fr !important; }
    .video-gallery-section video { height: 220px !important; }

    /* FOOTER */
    .footer-top { flex-direction: column; text-align: center; gap: 40px; padding-bottom: 40px;}
    .footer-logo { margin: 0 auto 20px auto; }
    .lisans-kutu { margin: 0 auto; display: inline-block;}
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

/* --- SS 4 INNER HERO & OFFSET --- */
.inner-hero {
    position: relative;
    padding: 100px 5%;
    text-align: center;
    background: url('../images/66951cbc-3441-4952-b66e-cc660d61bff7.jpeg') center/cover;
    color: white;
}
.inner-hero::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(17,74,49,0.7); }
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero h1 { font-size: 3rem; margin-bottom: 10px; font-weight: 600; color: white;}
.breadcrumb { font-size: 0.95rem; opacity: 0.9; }

.inner-service-section { padding: 100px 5%; background: #fff; display: flex; align-items: center; gap: 80px; }
.inner-service-text { flex: 1.1; }
.inner-service-text h1 { font-size: 2.2rem; font-weight: 500; color: #222; margin-bottom: 20px; }
.inner-service-text .subtitle { font-size: 1rem; color: var(--primary-green); font-style: italic; border-left: 2px solid var(--accent-gold); padding-left: 15px; margin-bottom: 25px; }
.inner-service-text p { color: #666; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; }
.inner-service-img-wrap { flex: 0.9; position: relative; padding-top: 40px; padding-right: 40px; }
.inner-service-img-wrap::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 80%; background: #eaeaea; border-radius: 12px; z-index: 1; }
.inner-service-img-wrap img { position: relative; z-index: 2; width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Extender sections for inner pages */
.extra-content-section { padding: 80px 5%; background: var(--section-bg); }
.extra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px;}
.extra-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.extra-card i { font-size: 2rem; color: var(--primary-green); margin-bottom: 15px; }
.extra-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.extra-card p { font-size: 0.9rem; color: var(--text-gray); }

/* --- SS 3 FOOTER --- */
footer {
    background: #0b2518; /* Very dark green */
    color: #ccc;
    padding-top: 80px;
}
.footer-top {
  padding: 0 5% 50px 5%;
  display: flex;
  gap: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-col-1 { flex: 1.5; }
.footer-col-2 { flex: 1.5; display: flex; justify-content: center; }
.footer-col-3 { flex: 1; }
.footer-col-4 { flex: 1; }

.footer-logo { max-width: 200px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-col-1 p { font-size: 0.85rem; color: #a5b5ac; margin-bottom: 20px; line-height: 1.8;}

.lisans-kutu { border: 2px solid white; padding: 3px; display: inline-block; background: #264a38; border-radius: 4px;}
.lisans-kutu img { max-width: 250px; display: block; border-radius: 2px;}

.footer-top h4 { color: #fff; margin-bottom: 20px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;}
.footer-top ul li { margin-bottom: 12px; }
.footer-top ul li a { color: #a5b5ac; font-size: 0.9rem; }
.footer-top ul li a:hover { color: #fff; }

.footer-bottom {
  background: #081d12; 
  color: #889990;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Floating Actions */
.floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.whatsapp-btn, .phone-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.whatsapp-btn { background-color: #25D366; }
.phone-btn { background-color: #333; }

/* Flag Section */
.flag-section { position: relative; padding: 250px 5%; text-align: center; background: url('../images/e290aac5-58d9-4a6a-83f9-5d29a2611926.jpeg') center/cover; color: white; display: flex; align-items: center; justify-content: center; min-height: 80vh;}
.flag-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)); z-index: 1; }
.flag-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.flag-content h2 { color: var(--danger-red); font-size: 3.5rem; font-weight: 500; margin-bottom: 25px; line-height: 1.2;}
.flag-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; color: #ddd;}
.btn-transparent { display: inline-block; background: transparent; border: 1px solid #fff; color: #fff; padding: 15px 35px; font-size: 0.95rem; font-weight: 500; border-radius: 4px;}
.btn-transparent:hover { background: #fff; color: #000; }

/* FAQ Side-by-Side */
.faq-wrap { display: flex; align-items: stretch; justify-content: space-between; gap: 60px; padding: 120px 5%; background: var(--section-bg); }
.faq-left { flex: 1.2; }
.faq-left h2 { font-size: 2.8rem; font-weight: 400; color: #222; margin-bottom: 40px; }
.faq-right { flex: 0.8; position: relative; }
.faq-right img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.faq-item { border: 1px solid #eaeaea; border-radius: 8px; margin-bottom: 15px; background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.02);}
.faq-question { padding: 22px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 400; font-size: 1rem; color: #444; }
.faq-question.active { color: var(--primary-green); font-weight: 500;}
.faq-question i { color: #ccc; transition: transform 0.3s; }
.faq-question.active i { transform: rotate(180deg); color: var(--primary-green);}
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-gray); font-size: 0.95rem; line-height: 1.7;}
.faq-question.active + .faq-answer { padding: 0 25px 22px 25px; max-height: 500px; }

/* SS5 Galeri */
.galeri-section { padding: 80px 5%; background: #fff; display: flex; gap: 40px; align-items: stretch; }
.galeri-grid { flex: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.galeri-grid img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; }
.galeri-card { flex: 1; border: 6px solid var(--header-green); padding: 50px 40px; background: transparent; display: flex; flex-direction: column; }
.galeri-card h4 { font-size: 0.9rem; font-weight: 400; color: var(--primary-green); margin-bottom: 5px; }
.galeri-card h2 { font-size: 2.2rem; font-weight: 500; color: #222; margin-bottom: 30px; }
.galeri-card p { color: #666; font-size: 0.95rem; line-height: 1.8; margin-bottom: 40px; }
.galeri-card .badge-img { width: 100%; border-radius: 8px; margin-top: auto; }
