@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --primary: #ffffff;
  --secondary: #f0f4f8;
  --accent-1: #00d2ff;
  --accent-2: #3a7bd5;
  --accent-3: #ff0076;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --gold: #ffb703;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(20px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--primary);
  overflow-x: hidden;
}

body {
  /* Vibrant Mesh Gradient Background */
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 118, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(58, 123, 213, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.float-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

.float-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.float-whatsapp::after {
  background: rgba(37, 211, 102, 0.5);
}

.float-phone {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}
.float-phone::after {
  background: rgba(0, 210, 255, 0.5);
}

.float-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  transition: 0.3s;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-2);
}

.mobile-menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--accent-2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/yalova-hali-yikama.jpeg') center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
  z-index: -1;
  backdrop-filter: blur(5px);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  animation: slideUp 1s ease forwards;
  opacity: 0;
  color: var(--text-dark);
}

.hero h1 span {
  background: linear-gradient(to right, var(--accent-2), var(--accent-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
  animation: slideUp 1s ease 0.2s forwards;
  opacity: 0;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(58, 123, 213, 0.4);
  animation: slideUp 1s ease 0.4s forwards;
  opacity: 0;
  border: none;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(58, 123, 213, 0.6);
}

/* Services Grid */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

.section-title span {
  color: var(--accent-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(30px);
  opacity: 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.service-card.visible {
  animation: fadeUp 0.8s ease forwards;
}

.service-card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 25px 50px rgba(58, 123, 213, 0.15);
}

.service-img-wrapper {
  overflow: hidden;
  position: relative;
}

.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-content {
  padding: 35px;
  background: white;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--accent-2);
  font-weight: 800;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.read-more {
  color: var(--accent-2);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  font-size: 1.1rem;
}

.read-more:hover {
  color: var(--accent-3);
  gap: 15px;
}

/* Service Detail Page */
.page-header {
  padding: 180px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(240, 244, 248, 0.9), rgba(255,255,255,0.9));
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--text-dark);
}

.page-layout {
  max-width: 1200px;
  margin: -50px auto 50px;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

.article-content {
  flex: 3;
  padding: 60px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.sidebar {
  flex: 1;
  background: white;
  padding: 40px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  position: sticky;
  top: 100px;
}

.sidebar h3 {
  font-size: 1.5rem;
  color: var(--accent-2);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary);
}

.sidebar-links {
  list-style: none;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 15px;
}

.sidebar-links a {
  display: block;
  padding: 15px 20px;
  background: var(--secondary);
  color: var(--text-dark);
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 1.05rem;
}

.sidebar-links a:hover, .sidebar-links a.active {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
}

.sidebar-search {
  display: flex;
  margin-bottom: 40px;
}

.sidebar-search input {
  flex: 1;
  padding: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 10px 0 0 10px;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

.sidebar-search button {
  padding: 15px 20px;
  background: var(--accent-2);
  color: white;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.1rem;
}

.sidebar-search button:hover {
  background: var(--accent-1);
}

.article-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.article-content h2 {
  font-size: 2.2rem;
  margin: 50px 0 25px;
  color: var(--accent-2);
  font-family: 'Playfair Display', serif;
}

.article-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 25px;
}

.article-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.7;
  position: relative;
  list-style-type: none;
  padding-left: 30px;
}

.article-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: var(--text-dark);
  padding: 80px 20px 20px;
  color: white;
  margin-top: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--accent-1);
  font-weight: 800;
}

.footer-col p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.footer-col a {
  color: #cbd5e1;
  line-height: 1.8;
  display: block;
  margin-bottom: 15px;
  transition: 0.3s;
  font-size: 1.05rem;
}

.footer-col a:hover {
  color: var(--accent-1);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 1rem;
}

/* Features / Why Choose Us */
.features-section {
  padding: 80px 20px;
  background: white;
  margin: 50px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-box {
  text-align: center;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 20px;
  transition: 0.3s;
}
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.feature-box i {
  font-size: 3rem;
  color: var(--accent-1);
  margin-bottom: 20px;
}
.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(255,255,255,1) 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-2);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(58, 123, 213, 0.3);
}
.process-step h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Reviews Section */
.reviews-section {
  padding: 80px 20px;
}
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
.google-badge img {
  height: 40px;
}
.google-stars {
  color: #fbbc05;
  font-size: 1.5rem;
}
.google-badge span {
  font-weight: bold;
  font-size: 1.2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: bold;
}
.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: var(--secondary);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
}
.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-light);
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  padding: 80px 20px;
  text-align: center;
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* About Us Section */
.about-section {
  padding: 80px 20px;
  background: white;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.about-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat {
  background: var(--secondary);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat .counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-2);
  display: block;
}
.stat span {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}
.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Before / After Slider */
.before-after-section {
  padding: 80px 20px;
  background: var(--secondary);
}
.ba-slider {
  position: relative;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ba-image img {
  width: 800px; /* matches container max-width */
  height: 400px;
  object-fit: cover;
  display: block;
}
.ba-before {
  width: 50%;
  z-index: 2;
  border-right: 3px solid white;
}
.ba-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
}
.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-size: 20px;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  pointer-events: none;
}
.ba-tag {
  position: absolute;
  top: 20px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 4;
}
.ba-tag-before { left: 20px; }
.ba-tag-after { right: 20px; }

/* Trust Badges */
.trust-badges-section {
  padding: 60px 20px;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.trust-badge img {
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
  transition: 0.3s;
}
.trust-badge:hover img {
  transform: scale(1.1);
}
.trust-badge span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Service Areas */
.service-areas-section {
  padding: 80px 20px;
  background: var(--secondary);
}
.areas-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.area-tag {
  background: white;
  padding: 12px 25px;
  border-radius: 30px;
  color: var(--accent-2);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  cursor: default;
}
.area-tag:hover {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  transform: translateY(-3px);
}

/* Quick Contact Form */
.quick-contact-section {
  padding: 80px 20px;
  background: white;
}
.quick-contact-container {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.05), rgba(0, 210, 255, 0.05));
  padding: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  border: 1px solid var(--accent-1);
}
.qc-text {
  flex: 1;
  min-width: 250px;
}
.qc-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.qc-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}
.qc-form {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
}
.qc-form input {
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.qc-form input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.2);
}
.qc-form .btn {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* Animations */
@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .mobile-menu-btn { display: block; z-index: 1001; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 85%;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -15px 0 40px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .page-header h1 { font-size: 2.5rem; }
  .section-title { font-size: 2.5rem; }
  
  .ba-slider { height: 250px; }
  .ba-image img { width: 100%; height: 250px; }
  .about-container { flex-direction: column; }
  
  .quick-contact-container { padding: 20px; flex-direction: column; text-align: center; }
  .qc-form, .qc-text { min-width: 100%; width: 100%; }
  
  .google-badge {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    width: 100%;
  }
  .google-badge span {
    font-size: 1rem;
    text-align: center;
  }
  
  .page-layout { flex-direction: column; }
  .sidebar { width: 100%; position: static; box-sizing: border-box; }
}
