/* ==========================================================================
   Makko Klima - Premium Red, Black & White Theme (V3 - Perfected)
   ========================================================================== */

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

:root {
  /* Colors - STRICTLY RED, BLACK, WHITE */
  --red: #E31837; 
  --red-dark: #b8102a;
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-dark: #4a4a4a;
  
  /* Fonts - Premium Selection */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Extreme Glassmorphism */
  --glass-bg-light: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(10, 10, 10, 0.75);
  --glass-border-light: rgba(255, 255, 255, 0.5);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
  
  /* Utilities */
  --transition: all 0.3s ease;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-red: 0 10px 25px rgba(227, 24, 55, 0.25);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

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

a:hover {
  color: var(--red-dark);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* =========================================
   Custom CSS Logo
   ========================================= */
.css-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.css-logo:hover {
  opacity: 0.9;
}

.css-logo-icon {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3.5px solid var(--black);
  border-left-color: var(--red);
  border-bottom-color: var(--red);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

header.scrolled .css-logo-icon {
  border: 3.5px solid var(--black);
  border-left-color: var(--red);
  border-bottom-color: var(--red);
}

/* Sayfa üstündeyken, arkası koyuysa logoyu beyaza çevirmek için class */
.css-logo.light-mode .css-logo-icon {
  border-color: var(--white);
  border-left-color: var(--red);
  border-bottom-color: var(--red);
}

.css-logo.light-mode .css-logo-text-top {
  color: var(--white);
}

.css-logo-icon i {
  transform: rotate(45deg);
  font-size: 22px;
  color: var(--black);
}

.css-logo.light-mode .css-logo-icon i {
  color: var(--white);
}

header.scrolled .css-logo-icon i {
  color: var(--black);
}

.css-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.css-logo-text-top {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--black);
  letter-spacing: 1px;
}

header.scrolled .css-logo-text-top {
  color: var(--black) !important;
}

.css-logo-text-bottom {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 5.5px;
  margin-top: 2px;
}

/* =========================================
   Glassmorphism Classes
   ========================================= */
.glass-light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border-dark);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  color: var(--white);
}

.glass-dark h1, .glass-dark h2, .glass-dark h3, .glass-dark h4 {
  color: var(--white);
}

.glass-dark p {
  color: #dddddd;
}

/* =========================================
   Typography & Buttons
   ========================================= */
.section-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: var(--black);
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  display: inline-block;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px; /* Slightly rounded, modern corporate */
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

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

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

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

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* =========================================
   Responsive Utilities (Layout & Typography)
   ========================================= */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-title {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.section-heading {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--black);
}

.text-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-dark);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

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

/* =========================================
   Navigation (Header)
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

header.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-card);
}

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

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

header.scrolled .nav-links a,
header.light-header .nav-links a {
  color: var(--black);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

header.scrolled .mobile-menu-btn,
header.light-header .mobile-menu-btn {
  color: var(--black);
}

/* =========================================
   Hero Slider Section
   ========================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 750px;
  position: relative;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--red);
}

.hero-desc {
  font-size: 1.25rem;
  color: #dddddd;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

/* Slider Controls */
.corporate-slider .swiper-button-next,
.corporate-slider .swiper-button-prev {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.corporate-slider .swiper-button-next:hover,
.corporate-slider .swiper-button-prev:hover {
  background: var(--red);
  border-color: var(--red);
}

.corporate-slider .swiper-button-next::after,
.corporate-slider .swiper-button-prev::after {
  font-size: 1.2rem;
}

/* =========================================
   Page Headers (Subpages)
   ========================================= */
.page-header {
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000');
  background-position: center;
  background-size: cover;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 4px solid var(--red);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   Premium Corporate Slider (index.html)
   ========================================= */
.corporate-slider {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.corporate-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.corporate-slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 10s ease;
}

.swiper-slide-active .corporate-slide-bg {
  transform: scale(1.05);
}

.corporate-slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

.corporate-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.corporate-badge {
  display: inline-block;
  background: rgba(227, 24, 55, 0.2);
  border-left: 3px solid var(--red);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.corporate-slider h1 {
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.corporate-slider h1 span {
  color: var(--red);
}

.corporate-slider p {
  font-size: 1.2rem;
  color: #dddddd;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.7s;
}

.corporate-slider-btns {
  display: flex;
  gap: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.9s;
}

.slider-features {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 1.1s;
}

.slider-features span {
  display: flex;
  align-items: center;
}

.swiper-slide-active .corporate-badge,
.swiper-slide-active .corporate-slider h1,
.swiper-slide-active .corporate-slider p,
.swiper-slide-active .corporate-slider-btns,
.swiper-slide-active .slider-features {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================
   Static Hero Section (index.html)
   ========================================= */
.hero-static {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #fdfdfd 0%, #f4f6f8 100%);
  overflow: hidden;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-buttons .btn {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.hero-stats {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.hero-stats h3 {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 5px;
}

.hero-stats p {
    color: var(--gray-dark);
    font-weight: 500;
}

.hero-float-card {
    position: absolute;
    bottom: -40px;
    left: -40px;
    padding: 25px 35px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--red);
}

.hero-float-card i {
    font-size: 3rem;
    color: var(--red);
}

.hero-float-card h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 2px;
}

.hero-float-card p {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* =========================================
   Marquee Section (Küçültülmüş, Şık)
   ========================================= */
.marquee-section {
  padding: 15px 0;
  background: var(--gray-light);
  overflow: hidden;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  align-items: center;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-item i {
  color: var(--red);
  font-size: 1.1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   About / Hakkımızda Ana Sayfa
   ========================================= */
.about-section {
  padding: 120px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
}

.about-images img {
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--red);
}

.experience-badge h2 {
  color: var(--red);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

/* =========================================
   Services / Hizmetler Kartları
   ========================================= */
.services-section {
  padding: 120px 0;
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #eaeaea;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(227, 24, 55, 0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--red);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 24px;
}

/* =========================================
   Neden Biz (Why Us)
   ========================================= */
.why-us {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}

.why-us .section-title {
  color: var(--white);
}

.reason-card {
  padding: 40px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: var(--transition);
  height: 100%;
}

.reason-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.reason-icon {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-block;
}

.reason-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.reason-card p {
  color: #aaaaaa;
  font-size: 0.95rem;
}

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner {
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1647022528152-52ed9338611d?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(227, 24, 55, 0.92); /* Solid Red Overlay */
}

/* =========================================
   Footer
   ========================================= */
footer {
  background: var(--black);
  padding: 80px 0 30px;
  color: var(--white);
}

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

.footer-about p {
  color: #aaaaaa;
  margin-top: 20px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--red);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--white);
}

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

.footer-links a {
  color: #aaaaaa;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #aaaaaa;
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--red);
  font-size: 1.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #888888;
  font-size: 0.9rem;
}

/* =========================================
   Logo Image Enhancements
   ========================================= */
#header-logo img {
    max-height: 85px !important;
    height: 85px !important;
    transition: var(--transition);
}

header:not(.scrolled):not(.light-header) #header-logo img {
    filter: brightness(0) invert(1);
}

header.scrolled #header-logo img {
    max-height: 65px !important;
    height: 65px !important;
}

footer .logo img {
    max-height: 80px !important;
    height: 80px !important;
    filter: brightness(0) invert(1);
}

/* =========================================
   Floating WhatsApp
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-5px) scale(1.05);
    color: #fff;
    box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.6);
}

/* =========================================
   FAQ & Utilities
   ========================================= */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--gray-light);
}

.glass-card {
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .grid-2-cols, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .hero-grid > div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-grid .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-static {
        padding: 140px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }

    .hero-float-card {
        bottom: -20px;
        left: 20px;
        padding: 15px 20px;
        right: 20px;
        justify-content: center;
    }

    .hero-float-card i {
        font-size: 2rem;
    }

    .hero-float-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--black); }
  .mobile-menu-btn { display: block; z-index: 1001; }
  
  .page-header {
    height: 35vh;
    min-height: 250px;
  }
  
  .corporate-slider {
    height: 80vh;
    min-height: 500px;
  }
  
  .corporate-slider h1 {
    font-size: 2.8rem;
  }
  
  .corporate-slider p {
    font-size: 1rem;
  }
  
  .corporate-slider-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .page-title { font-size: 2.2rem !important; }
  .section-heading { font-size: 2.2rem !important; }
  .text-lead { font-size: 1rem !important; }
  .footer-grid { grid-template-columns: 1fr; }
}
