
/* ======================================================
   KURUMSAL YAPI DEKORASYON - ANA CSS
   Renk Paleti: Lacivert #1B2863 | Koyu Sarı #D4A017
   ====================================================== */

/* --- CSS Variables --- */
:root {
  --navy:        #1B2863;
  --navy-dark:   #12194a;
  --navy-light:  #253180;
  --gold:        #D4A017;
  --gold-dark:   #b8890e;
  --gold-light:  #e8b822;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --black:       #0d0d0d;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.16);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  .3s ease;
  --font-main:   'Inter', sans-serif;
  --font-display:'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: .95rem; transition: all var(--transition); cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.35); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; position: relative; padding: 0 20px; }
.section-label::before,.section-label::after { content:''; position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 2px; background: var(--gold); }
.section-label::before { left: -10px; }
.section-label::after { right: -10px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.8rem); color: var(--navy); line-height: 1.2; }
.section-title span { color: var(--gold); }
.section-desc { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; margin: 16px auto 0; }

/* ======================================================
   HEADER
   ====================================================== */
.header-top { background: var(--navy-dark); padding: 8px 0; font-size: .82rem; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-info { display: flex; gap: 20px; flex-wrap: wrap; }
.header-info a, .header-info span { color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }
.header-info a:hover { color: var(--gold); }
.header-info i { color: var(--gold); }
.header-socials { display: flex; gap: 12px; }
.header-socials a { color: rgba(255,255,255,.7); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: .75rem; }
.header-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.navbar { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; transition: all var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-brand { display: flex; align-items: center; }
.site-logo { height: 50px; width: auto; }
.logo-text .logo-primary { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 10px 14px; color: var(--gray-800); font-weight: 500; font-size: .9rem; border-radius: var(--radius); transition: all var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }
.dropdown-arrow { font-size: .7rem; transition: transform var(--transition); }
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 1001; }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: .88rem; color: var(--gray-700); transition: all var(--transition); }
.dropdown-menu li a i { color: var(--gold); width: 16px; }
.dropdown-menu li a:hover { background: var(--gray-50); color: var(--navy); padding-left: 24px; }
.btn-quote { background: var(--gold); color: var(--navy-dark)!important; padding: 10px 20px; border-radius: var(--radius); font-weight: 700; font-size: .85rem; }
.btn-quote:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ======================================================
   HERO / SLIDER
   ====================================================== */
.hero-slider { position: relative; height: 85vh; min-height: 560px; overflow: hidden; }
.slide-item { position: relative; width: 100%; height: 85vh; min-height: 560px; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s ease; }
.swiper-slide-active .slide-bg { transform: scale(1.05); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,40,99,.88) 0%, rgba(27,40,99,.6) 60%, transparent 100%); }
.slide-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; max-width: 700px; }
.slide-tag { display: inline-block; background: var(--gold); color: var(--navy-dark); font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.slide-title { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.slide-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.82); margin-bottom: 32px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-nav { position: absolute; bottom: 40px; right: 60px; display: flex; gap: 10px; z-index: 10; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); font-size: .9rem; }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.slider-pagination { position: absolute; bottom: 50px; left: 60px; z-index: 10; }
.swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); transform: scale(1.3); }

/* ======================================================
   PROCESS STEPS
   ====================================================== */
.process-section { padding: 72px 0; background: var(--gray-50); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 32px; }
.process-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); border-bottom: 4px solid transparent; transition: all var(--transition); position: relative; }
.process-card::before { content: attr(data-step); position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-dark); font-weight: 800; font-size: .75rem; padding: 4px 12px; border-radius: 20px; }
.process-card:hover { border-bottom-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow); }
.process-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-icon i { color: var(--gold); font-size: 1.6rem; }
.process-title { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.process-desc { font-size: .88rem; color: var(--gray-600); }

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-section { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy-dark); padding: 24px 28px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); }
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; }
.about-badge span { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content .section-header { text-align: left; margin-bottom: 28px; }
.about-text { color: var(--gray-600); margin-bottom: 32px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 36px; }
.stat-item { background: var(--gray-50); border-radius: var(--radius); padding: 20px; border-left: 4px solid var(--gold); }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: .82rem; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.about-icons { display: flex; gap: 20px; flex-wrap: wrap; }
.about-icon-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.about-icon-item i { color: var(--gold); font-size: 1.1rem; }

/* ======================================================
   SERVICES
   ====================================================== */
.services-section { padding: 96px 0; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-image { height: 200px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.08); }
.service-body { padding: 24px; }
.service-icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius); margin-bottom: 14px; }
.service-icon-badge i { color: var(--gold); font-size: 1.2rem; }
.service-title { font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: .88rem; }
.service-link:hover { gap: 10px; }

/* ======================================================
   PROJECTS
   ====================================================== */
.projects-section { padding: 96px 0; }
.projects-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn { padding: 10px 24px; border-radius: 30px; font-weight: 600; font-size: .9rem; border: 2px solid var(--gray-200); color: var(--gray-600); transition: all var(--transition); }
.tab-btn.active, .tab-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 28px; }
.project-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative; }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-image { height: 240px; overflow: hidden; position: relative; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-image img { transform: scale(1.08); }
.project-status { position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.status-completed { background: var(--navy); color: var(--white); }
.status-ongoing { background: var(--gold); color: var(--navy-dark); }
.project-body { padding: 20px; background: var(--white); }
.project-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.project-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.project-meta span { font-size: .8rem; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }
.project-meta i { color: var(--gold); }

/* ======================================================
   HERO CTA (Contact CTA)
   ====================================================== */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); position: relative; overflow: hidden; }
.cta-section::before { content:''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a017' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-label { display: inline-block; background: rgba(212,160,23,.2); color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: 18px; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 12px 22px; color: var(--white); margin-top: 28px; justify-content: center; font-size: 1.1rem; font-weight: 600; }
.cta-phone i { color: var(--gold); font-size: 1.3rem; }
.cta-phone a { color: var(--white); }

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-section { padding: 96px 0; background: var(--gray-50); }
.testimonial-slider .swiper-slide { padding: 10px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--gold); font-size: .9rem; }
.testimonial-text { font-size: .95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar .avatar-placeholder { color: var(--gold); font-size: 1.3rem; }
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-company { font-size: .82rem; color: var(--gray-500); }

/* ======================================================
   BLOG
   ====================================================== */
.blog-section { padding: 96px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); background: var(--white); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image { height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-category { font-size: .75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.blog-title { font-weight: 700; color: var(--navy); margin: 8px 0; line-height: 1.4; }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: .88rem; color: var(--gray-600); margin-bottom: 16px; }
.blog-meta { display: flex; gap: 14px; font-size: .8rem; color: var(--gray-500); }
.blog-meta i { color: var(--gold); }

/* ======================================================
   REFERENCES / BRANDS / LOGO STRIP
   ====================================================== */
.logos-section { padding: 56px 0; background: var(--white); border-top: 1px solid var(--gray-200); }
.logos-strip { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-item { opacity: .5; transition: opacity var(--transition); filter: grayscale(1); }
.logo-item:hover { opacity: 1; filter: none; }
.logo-item img { height: 50px; width: auto; }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); }
.footer-main { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 56px; }
.footer-heading { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content:''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--gold); }
.footer-about p { font-size: .88rem; line-height: 1.8; margin: 16px 0 20px; }
.footer-logo img { height: 48px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .85rem; transition: all var(--transition); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; display: flex; align-items: center; gap: 8px; transition: all var(--transition); }
.footer-links a i { color: var(--gold); font-size: .7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 12px; font-size: .88rem; align-items: flex-start; }
.footer-contact-list i { color: var(--gold); margin-top: 3px; width: 16px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.75); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-map { margin-top: 16px; border-radius: var(--radius); overflow: hidden; }
.footer-map iframe { width: 100%; height: 150px; border: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .82rem; }
.dev-credit a { color: var(--gold); font-weight: 600; }
.dev-credit a:hover { text-decoration: underline; }

/* ======================================================
   WHATSAPP FLOAT
   ====================================================== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all var(--transition); }
.whatsapp-float i { font-size: 1.6rem; color: white; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ======================================================
   FORMS
   ====================================================== */
.form-section { padding: 96px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.form-info h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); margin-bottom: 16px; }
.form-info p { color: var(--gray-600); margin-bottom: 28px; }
.form-contact-items { display: flex; flex-direction: column; gap: 16px; }
.form-contact-item { display: flex; align-items: center; gap: 14px; }
.form-contact-item .icon { width: 46px; height: 46px; background: linear-gradient(135deg,var(--navy),var(--navy-light)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-contact-item .icon i { color: var(--gold); }
.form-contact-item strong { display: block; color: var(--navy); font-weight: 600; }
.form-contact-item span { font-size: .88rem; color: var(--gray-600); }
.form-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.form-group label .req { color: var(--gold); }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: .9rem; color: var(--gray-800); transition: border-color var(--transition); background: var(--gray-50); }
.form-control:focus { outline: none; border-color: var(--gold); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A017' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.btn-submit { width: 100%; padding: 14px; font-size: 1rem; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ======================================================
   CERTIFICATES / TESTIMONIALS PAGE
   ====================================================== */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.8rem); color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 16px; font-size: .85rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.5); }
.content-section { padding: 80px 0; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; }
.cert-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); cursor: pointer; }
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-card img { width: 100%; height: 220px; object-fit: cover; }
.cert-card .cert-info { padding: 16px; }
.cert-card h3 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cert-card p { font-size: .85rem; color: var(--gray-600); }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 28px; }
.catalog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.catalog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.catalog-cover { height: 220px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.catalog-cover img { width: 100%; height: 100%; object-fit: cover; }
.catalog-cover .no-cover { color: var(--navy); text-align: center; }
.catalog-cover .no-cover i { font-size: 3rem; color: var(--gold); display: block; margin-bottom: 8px; }
.catalog-body { padding: 20px; }
.catalog-body h3 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.catalog-body p { font-size: .88rem; color: var(--gray-600); margin-bottom: 14px; }

/* ======================================================
   BLOG DETAIL
   ====================================================== */
.blog-detail { padding: 64px 0; }
.blog-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-content .post-title { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.blog-content .post-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .85rem; color: var(--gray-500); margin-bottom: 24px; }
.blog-content .post-meta i { color: var(--gold); }
.blog-content .post-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.blog-content .post-image img { width: 100%; height: 400px; object-fit: cover; }
.blog-content .post-body { font-size: 1rem; line-height: 1.9; color: var(--gray-700); }
.blog-content .post-body h2,.blog-content .post-body h3 { color: var(--navy); font-family: var(--font-display); margin: 2rem 0 1rem; }
.blog-content .post-body p { margin-bottom: 1.2rem; }
.blog-content .post-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-content .post-body ul,.blog-content .post-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.blog-content .post-body li { margin-bottom: .5rem; }
.sidebar-widget { background: var(--gray-50); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.widget-title { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .blog-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: 80px 24px 24px; gap: 4px; overflow-y: auto; box-shadow: var(--shadow-lg); transition: right var(--transition); z-index: 999; }
  .nav-menu.open { right: 0; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; border-radius: var(--radius); }
  .has-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-50); border-radius: var(--radius); }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-slider,.slide-item { height: 70vh; min-height: 480px; }
  .slide-content { padding: 0 24px; }
  .slide-title { font-size: 1.8rem; }
  .slider-nav { right: 20px; bottom: 20px; }
  .slider-pagination { left: 20px; bottom: 26px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .projects-grid,.services-grid,.blog-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .slide-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .section-title { font-size: 1.6rem; }
}

/* ======================================================
   ANIMATIONS
   ====================================================== */
[data-aos] { will-change: transform, opacity; }
.fade-up { animation: fadeUp .6s ease forwards; }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ============================================
   MODERN HERO SLIDER
   ============================================ */
.hero-swiper-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-swiper,
.hero-slide {
    width: 100%;
    height: 100%;
}

/* Background */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 6s ease;
}
.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

/* Overlay - gradient from bottom-left */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11, 22, 68, 0.85) 0%,
        rgba(27, 40, 99, 0.65) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* Inner layout */
.hero-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 720px;
}

/* Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.5);
    color: #D4A017;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s .1s, transform .5s .1s;
}
.swiper-slide-active .hero-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 18px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s .25s, transform .6s .25s;
}
.swiper-slide-active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s .4s, transform .6s .4s;
}
.swiper-slide-active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Action buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s .55s, transform .6s .55s;
}
.swiper-slide-active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: #D4A017;
    color: #fff;
    border-color: #D4A017;
    box-shadow: 0 6px 24px rgba(212,160,23,.4);
}
.hero-btn-primary:hover {
    background: #b8880f;
    border-color: #b8880f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,160,23,.5);
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
    backdrop-filter: blur(6px);
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

/* Navigation arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.hero-nav:hover {
    background: #D4A017;
    border-color: #D4A017;
    transform: translateY(-50%) scale(1.1);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Pagination */
.hero-pagination {
    position: absolute;
    bottom: 32px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    width: auto !important;
}
.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.5);
    opacity: 1;
    border-radius: 5px;
    transition: all .3s;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: #D4A017;
    width: 28px;
    border-radius: 5px;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hero-scroll-hint span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}
.hero-scroll-hint span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown {
    0%   { top: 5px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-swiper-wrap { height: 85vh; min-height: 500px; }
    .hero-nav { width: 40px; height: 40px; font-size: 14px; }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
    .hero-btn { padding: 12px 22px; font-size: 14px; }
    .hero-scroll-hint { display: none; }
}

/* ════════════════════════════════════════════
   MODERN HOMEPAGE — Architecture/Construction
   ════════════════════════════════════════════ */

/* ── Section base ── */
.section-white { background: #ffffff; padding: 90px 0; }
.section-gray  { background: #f4f6f9; padding: 90px 0; }
.section-dark  { background: #0f1d4a; padding: 90px 0; }
.section-cta   { background: linear-gradient(120deg,#1B2863 0%,#0f1531 100%); padding: 70px 0; }
.section-contact { background: linear-gradient(135deg,#111e55 0%,#1B2863 100%); padding: 90px 0; }

/* ── Section headers ── */
.sec-head { }
.sec-head.center { text-align: center; }
.sec-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4A017;
    padding: 5px 16px;
    border: 1px solid rgba(212,160,23,.35);
    border-radius: 20px;
    margin-bottom: 14px;
}
.sec-tag-light { color: rgba(212,160,23,.9); border-color: rgba(212,160,23,.3); }
.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: #0f1d4a;
    line-height: 1.15;
    margin: 0 0 14px;
}
.sec-title em { font-style: normal; color: #D4A017; }
.sec-title.light { color: #fff; }
.sec-desc { font-size: 16px; color: #666; max-width: 560px; margin: 0 auto; }
.sec-desc.light { color: rgba(255,255,255,.65); }
.sec-cta { text-align: center; margin-top: 50px; }

/* ── Buttons ── */
.btn-solid {
    display: inline-flex; align-items: center; gap: 8px;
    background: #D4A017; color: #fff;
    padding: 13px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: all .25s; border: 2px solid #D4A017;
}
.btn-solid:hover { background: #b8880f; border-color: #b8880f; transform: translateY(-2px); color: #fff; }

.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #1B2863;
    padding: 12px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    border: 2px solid #1B2863; transition: all .25s;
}
.btn-outline-dark:hover { background: #1B2863; color: #fff; }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 12px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    border: 2px solid rgba(255,255,255,.5); transition: all .25s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ── Stats Bar ── */
.stats-bar { background: #1B2863; padding: 22px 0; }
.stats-bar-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.stats-bar-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 10px 40px; text-align: center;
}
.stats-bar-num { font-size: 28px; font-weight: 800; color: #D4A017; font-family: 'Playfair Display', serif; line-height: 1; }
.stats-bar-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }
.stats-bar-divider { width: 1px; height: 44px; background: rgba(255,255,255,.15); }

/* ── Steps ── */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px; margin-top: 48px;
}
.step-card {
    background: #f8f9fc; border-radius: 14px; padding: 36px 28px;
    position: relative; border: 1.5px solid #e8ecf5;
    transition: all .3s; text-align: center;
}
.step-card:hover { background: #fff; box-shadow: 0 12px 40px rgba(27,40,99,.1); transform: translateY(-4px); border-color: #D4A017; }
.step-num {
    position: absolute; top: -18px; left: 24px;
    font-size: 48px; font-weight: 900; color: #e8ecf5;
    font-family: 'Playfair Display', serif; line-height: 1;
    transition: color .3s;
}
.step-card:hover .step-num { color: rgba(212,160,23,.2); }
.step-icon {
    width: 60px; height: 60px; background: #1B2863; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #D4A017; margin: 0 auto 16px; transition: all .3s;
}
.step-card:hover .step-icon { background: #D4A017; color: #fff; }
.step-title { font-size: 17px; font-weight: 700; color: #0f1d4a; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: #666; line-height: 1.7; }

/* ── About Section ── */
.about-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center;
}
.about-img-frame {
    position: relative; border-radius: 16px; overflow: visible;
}
.about-img-frame img {
    width: 100%; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    display: block;
}
.about-img-accent {
    position: absolute; bottom: -16px; right: -16px;
    width: 120px; height: 120px;
    background: #D4A017; border-radius: 12px; z-index: -1;
    opacity: .35;
}
.about-exp-badge {
    position: absolute; bottom: 28px; left: -24px;
    background: #1B2863; color: #fff;
    padding: 18px 24px; border-radius: 12px;
    box-shadow: 0 12px 32px rgba(27,40,99,.35);
    text-align: center;
}
.about-exp-badge strong { display: block; font-size: 34px; font-weight: 900; color: #D4A017; font-family: 'Playfair Display', serif; line-height: 1; }
.about-exp-badge strong sup { font-size: 18px; }
.about-exp-badge span { font-size: 12px; opacity: .8; margin-top: 4px; display: block; }

.about-desc { font-size: 16px; color: #555; line-height: 1.85; margin: 16px 0 24px; }
.about-features { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-features li { font-size: 14px; color: #444; display: flex; align-items: center; gap: 8px; }
.about-features li i { color: #D4A017; font-size: 15px; }

.about-stats-row { display: flex; gap: 32px; margin: 28px 0 32px; }
.about-stat strong { display: block; font-size: 30px; font-weight: 800; color: #1B2863; font-family: 'Playfair Display', serif; line-height: 1; }
.about-stat span { font-size: 13px; color: #888; margin-top: 4px; display: block; }

/* ── Services ── */
.svc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px; margin-top: 48px;
}
.svc-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    border: 1.5px solid #edf0f8;
    text-decoration: none; color: inherit;
    transition: all .3s; display: block;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,40,99,.12); border-color: #D4A017; }
.svc-img { height: 200px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 24px; }
.svc-icon {
    width: 48px; height: 48px; background: #1B2863; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; color: #D4A017; margin-bottom: 14px;
}
.svc-title { font-size: 17px; font-weight: 700; color: #0f1d4a; margin-bottom: 8px; }
.svc-desc { font-size: 13.5px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.svc-more { font-size: 13px; font-weight: 700; color: #D4A017; display: flex; align-items: center; gap: 6px; }

/* ── Projects (dark) ── */
.proj-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin: 36px 0 40px; flex-wrap: wrap;
}
.proj-tab {
    padding: 9px 22px; border-radius: 30px; border: 1.5px solid rgba(255,255,255,.25);
    background: transparent; color: rgba(255,255,255,.65);
    font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.proj-tab:hover, .proj-tab.active {
    background: #D4A017; border-color: #D4A017; color: #fff;
}
.proj-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.proj-card { display: block; text-decoration: none; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.05); transition: all .3s; }
.proj-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); }
.proj-img { height: 220px; position: relative; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.proj-card:hover .proj-img img { transform: scale(1.06); }
.proj-overlay {
    position: absolute; inset: 0; background: rgba(27,40,99,.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-view { color: #fff; font-size: 14px; font-weight: 600; border: 2px solid rgba(255,255,255,.6); padding: 10px 20px; border-radius: 30px; }
.proj-info { padding: 18px 20px; }
.proj-status {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 8px;
}
.proj-status.completed { background: rgba(40,167,69,.2); color: #4cdd7a; }
.proj-status.ongoing   { background: rgba(255,193,7,.2);  color: #ffc107; }
.proj-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proj-meta { display: flex; gap: 14px; font-size: 12px; color: rgba(255,255,255,.5); }
.proj-meta i { color: #D4A017; margin-right: 4px; }

/* ── CTA Box ── */
.cta-box {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 48px 56px;
}
.cta-txt h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,36px); color: #fff; font-weight: 800; line-height: 1.2; }
.cta-txt p { color: rgba(255,255,255,.65); font-size: 15px; margin-top: 10px; line-height: 1.7; }
.cta-acts { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff; padding: 13px 22px;
    border-radius: 50px; font-size: 14px; font-weight: 700;
    text-decoration: none; transition: all .2s;
}
.btn-wa:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.btn-phone {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,.4); color: #fff;
    padding: 11px 20px; border-radius: 50px; font-size: 14px;
    font-weight: 700; text-decoration: none; transition: all .2s;
}
.btn-phone:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ── Testimonials ── */
.testi-swiper { margin-top: 40px; }
.testi-card {
    background: #fff; border-radius: 16px; padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07); border: 1.5px solid #eef0f8;
    height: 100%;
}
.testi-stars { margin-bottom: 14px; }
.testi-stars i { color: #D4A017; font-size: 14px; }
.testi-text { font-size: 15px; color: #444; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #eef0f8; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-avatar-ph {
    width: 46px; height: 46px; border-radius: 50%;
    background: #1B2863; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: #1B2863; }
.testi-author span { font-size: 12px; color: #888; }
.testi-dots { margin-top: 24px; position: relative !important; }
.testi-dots .swiper-pagination-bullet { background: #ccd0e0; opacity: 1; }
.testi-dots .swiper-pagination-bullet-active { background: #D4A017; width: 24px; border-radius: 4px; }

/* ── Blog ── */
.blog-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; margin-top: 48px; }
.blog-c { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1.5px solid #edf0f8; transition: all .3s; }
.blog-c:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.blog-c-img { display: block; height: 200px; overflow: hidden; }
.blog-c-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-c:hover .blog-c-img img { transform: scale(1.05); }
.blog-c-body { padding: 22px; }
.blog-c-cat { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #D4A017; background: rgba(212,160,23,.1); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.blog-c-body h3 { font-size: 16px; font-weight: 700; color: #0f1d4a; margin-bottom: 8px; line-height: 1.4; }
.blog-c-body h3 a { color: inherit; text-decoration: none; }
.blog-c-body h3 a:hover { color: #D4A017; }
.blog-c-body p { font-size: 13.5px; color: #666; line-height: 1.7; margin-bottom: 14px; }
.blog-c-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #999; border-top: 1px solid #f0f0f0; padding-top: 12px; }
.blog-c-meta a { color: #1B2863; font-weight: 600; text-decoration: none; font-size: 12px; }
.blog-c-meta a:hover { color: #D4A017; }

/* ── Logos Marquee ── */
.logos-track-wrap { overflow: hidden; margin: 0 -20px; }
.logos-track {
    display: flex; align-items: center; gap: 32px;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.logos-track-rtl { animation: marquee-rtl 28s linear infinite; }
.logos-track:hover, .logos-track-rtl:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-rtl { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.logo-chip {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: #fff; border-radius: 10px; padding: 14px 24px;
    border: 1.5px solid #e8ecf5; height: 72px; min-width: 140px;
    transition: border-color .2s, box-shadow .2s;
}
.logo-chip:hover { border-color: #D4A017; box-shadow: 0 4px 16px rgba(212,160,23,.15); }
.logo-chip img { max-height: 44px; max-width: 120px; object-fit: contain; filter: grayscale(.4); transition: filter .2s; }
.logo-chip:hover img { filter: grayscale(0); }
.logo-chip span { font-size: 13px; font-weight: 700; color: #888; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
    display: flex; align-items: center; gap: 16px;
    text-decoration: none; color: inherit; padding: 14px 18px;
    background: rgba(255,255,255,.06); border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1); transition: background .2s;
}
.contact-item:hover { background: rgba(255,255,255,.1); }
.contact-ic {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #D4A017; flex-shrink: 0;
}
.contact-item span { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 3px; }
.contact-item strong { font-size: 14px; color: #fff; }

.contact-form-box {
    background: #fff; border-radius: 16px; padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.contact-form-box .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fgrp { margin-bottom: 14px; }
.fgrp label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
.fgrp label span { color: #e53e3e; }
.fgrp input, .fgrp textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e2e6f0;
    border-radius: 8px; font-size: 14px; outline: none;
    transition: border-color .2s; font-family: inherit; background: #fafbfe;
}
.fgrp input:focus, .fgrp textarea:focus { border-color: #1B2863; background: #fff; }
.fgrp textarea { min-height: 110px; resize: vertical; }
.form-submit {
    width: 100%; background: #1B2863; color: #fff; border: none;
    padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    gap: 8px; font-family: inherit; transition: background .2s;
}
.form-submit:hover { background: #D4A017; }
.form-success {
    background: #e6f9ee; color: #1a7a3c; border: 1px solid #b2eacb;
    padding: 12px 16px; border-radius: 8px; font-size: 14px;
    display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-exp-badge { left: 16px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .cta-box { flex-direction: column; text-align: center; padding: 36px 28px; }
}
@media (max-width: 767px) {
    .section-white, .section-gray, .section-dark, .section-cta, .section-contact { padding: 60px 0; }
    .stats-bar-item { padding: 10px 20px; }
    .stats-bar-divider { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .about-stats-row { gap: 18px; }
    .contact-form-box .form-row-2 { grid-template-columns: 1fr; }
    .cta-acts { justify-content: center; }
}

/* ════════════════════════════════════════════
   MOBILE SLIDER FIX
   ════════════════════════════════════════════ */
@media (max-width: 576px) {
    .hero-nav { display: none; } /* Okları mobilde gizle, pagination yeterli */
}
@media (min-width: 577px) and (max-width: 768px) {
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
    .hero-content { padding: 0 52px; } /* Okların üstüne gelmesin */
}

/* ════════════════════════════════════════════
   TESTIMONIAL IMPROVEMENTS
   ════════════════════════════════════════════ */
.testi-quote-icon {
    font-size: 24px; color: rgba(212,160,23,.25);
    margin-bottom: 10px;
}
.testi-card {
    display: flex; flex-direction: column;
}
.testi-text {
    flex: 1;
}

/* Review Form */
.review-form-box {
    background: #fff; border-radius: 16px;
    border: 1.5px solid #e8ecf5;
    padding: 36px 40px; margin-top: 56px;
    box-shadow: 0 4px 32px rgba(27,40,99,.07);
}
.review-form-head {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1.5px solid #eef0f8;
}
.review-form-head > i {
    font-size: 28px; color: #D4A017;
    width: 52px; height: 52px;
    background: rgba(212,160,23,.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.review-form-head h3 { font-size: 18px; font-weight: 700; color: #0f1d4a; margin: 0 0 5px; }
.review-form-head p  { font-size: 14px; color: #888; margin: 0; }

.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.rfgrp { margin-bottom: 16px; }
.rfgrp label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
.rfgrp label span { color: #e53e3e; }
.rfgrp input, .rfgrp textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e2e6f0;
    border-radius: 8px; font-size: 14px; outline: none; font-family: inherit;
    transition: border-color .2s; background: #fafbfe;
}
.rfgrp input:focus, .rfgrp textarea:focus { border-color: #1B2863; background: #fff; }
.rfgrp textarea { min-height: 100px; resize: vertical; }

.star-picker { display: flex; gap: 8px; margin-bottom: 4px; }
.star-picker i { font-size: 28px; color: #D4A017; cursor: pointer; transition: transform .15s; }
.star-picker i:hover { transform: scale(1.15); }
.star-picker i.inactive { color: #ddd; }

.review-submit {
    background: #1B2863; color: #fff; border: none;
    padding: 13px 32px; border-radius: 8px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit; transition: background .2s;
}
.review-submit:hover { background: #D4A017; }
.review-success {
    background: #e6f9ee; color: #1a7a3c; border: 1px solid #b2eacb;
    padding: 12px 16px; border-radius: 8px; font-size: 14px;
    display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}

@media (max-width: 640px) {
    .review-form-box { padding: 24px 20px; }
    .review-form-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   MODERN BRANDS / REFERENCES
   ════════════════════════════════════════════ */
.partner-block { }
.partner-head {
    display: flex; align-items: center; gap: 16px;
    justify-content: center; margin-bottom: 32px;
}
.partner-line { flex: 1; max-width: 120px; height: 1px; background: #e3e6f0; }
.partner-label {
    font-size: 13px; font-weight: 700; color: #858796;
    text-transform: uppercase; letter-spacing: 1px;
    display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.partner-label i { color: #D4A017; }

.partner-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px;
}
.partner-item {
    width: 150px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1.5px solid #eef0f8;
    border-radius: 12px; padding: 12px 16px;
    transition: all .25s; cursor: pointer;
}
.partner-item:hover {
    border-color: #D4A017;
    box-shadow: 0 6px 20px rgba(212,160,23,.15);
    transform: translateY(-3px);
}
.partner-item img {
    max-height: 48px; max-width: 120px;
    object-fit: contain;
    filter: grayscale(.3) opacity(.8);
    transition: filter .25s;
}
.partner-item:hover img { filter: grayscale(0) opacity(1); }
.partner-item span { font-size: 13px; font-weight: 700; color: #555; text-align: center; }

/* ════════════════════════════════════════════
   CTA + CONTACT ARCHITECTURAL BACKGROUNDS
   ════════════════════════════════════════════ */
.section-cta-arch {
    position: relative;
    background:
        linear-gradient(135deg, rgba(17,30,85,.97) 0%, rgba(27,40,99,.95) 100%),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80') center/cover no-repeat;
}
.section-contact-arch {
    position: relative;
    background:
        linear-gradient(135deg, rgba(10,18,55,.96) 0%, rgba(27,40,99,.94) 100%),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80') center/cover no-repeat;
}

/* ════════════════════════════════════════════
   MODERN FOOTER
   ════════════════════════════════════════════ */
.site-footer {
    position: relative;
    background:
        linear-gradient(175deg, rgba(8,16,50,.98) 0%, rgba(15,29,74,.97) 100%),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80') center/cover no-repeat fixed;
    color: rgba(255,255,255,.75);
}

/* Blueprint grid overlay */
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.footer-main { padding: 72px 0 48px; position: relative; }

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Brand col */
.footer-brand-col { }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
    max-height: 52px; max-width: 180px;
    filter: brightness(0) invert(1); /* Logo beyaza dönsün */
    opacity: .9;
    object-fit: contain;
}
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.footer-brand-desc { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }

.footer-social-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-soc {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none;
    transition: all .2s;
}
.footer-soc:hover { background: #D4A017; border-color: #D4A017; color: #fff; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    padding: 5px 12px; border-radius: 20px;
}
.footer-badge i { color: #D4A017; }

/* Nav cols */
.footer-nav-col { }
.footer-col-title {
    font-size: 13px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 20px; padding-bottom: 12px;
    position: relative;
}
.footer-col-title span::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px; background: #D4A017;
}
.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list a {
    color: rgba(255,255,255,.55); font-size: 14px; text-decoration: none;
    transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.footer-nav-list a::before {
    content: '›'; color: #D4A017; font-size: 16px; line-height: 1;
}
.footer-nav-list a:hover { color: #D4A017; }
.footer-nav-more { color: #D4A017 !important; font-weight: 600; }

/* Contact col */
.footer-contact-list-new { list-style: none; padding: 0; margin: 0 0 20px; }
.footer-contact-list-new li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; font-size: 13.5px; color: rgba(255,255,255,.65);
}
.fci {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #D4A017; flex-shrink: 0; margin-top: 1px;
}
.footer-contact-list-new a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-contact-list-new a:hover { color: #D4A017; }
.footer-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff; padding: 10px 18px;
    border-radius: 8px; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: background .2s;
}
.footer-wa-btn:hover { background: #1da851; color: #fff; }

/* Footer bottom bar */
.footer-bottom-bar {
    background: rgba(0,0,0,.3);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0; position: relative;
}
.footer-bottom-flex {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px;
}
.footer-bottom-flex strong { color: rgba(255,255,255,.7); }
.footer-dev a {
    color: #D4A017; text-decoration: none; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.footer-dev a:hover { color: #e8b52a; }
.footer-dev a i { font-size: 12px; }

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-grid-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid-4 { grid-template-columns: 1fr; gap: 28px; }
    .footer-main { padding: 48px 0 32px; }
    .footer-bottom-flex { flex-direction: column; text-align: center; }
}
