/* Karabük Akıllı Ev - Optimized CSS 2025 */

:root {
  --primary: #4A90E2;
  --primary-dark: #2E5C8A;
  --primary-light: #6BA3E8;
  --accent: #5B7FFF;
  --success: #10B981;
  --warning: #F59E0B;
  --dark: #0F1419;
  --dark-lighter: #1A1F28;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --white: #FFFFFF;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sticky CTA Bar - Simplified for mobile */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 0.6rem 1rem;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.5s ease-out;
  min-height: 50px;
  display: flex;
  align-items: center;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.sticky-cta-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sticky-cta-text {
  font-size: 0.85rem;
  font-weight: 500;
}

.btn-sticky-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  color: #C13584;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sticky-instagram:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(193, 53, 132, 0.3);
}

/* Header - Fixed positioning */
.header {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 998;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-icon {
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.btn-header-cta {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Simplified */
.hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.badge-icon {
  color: var(--success);
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-icon {
  color: var(--success);
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Buttons - Simplified */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-avatars {
  display: flex;
  margin-left: -8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 3px solid white;
  margin-left: -8px;
  font-size: 0.9rem;
}

.trust-stars {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.trust-text p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* Hero Visual - Simplified */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card.card-2 {
  animation-delay: 0.5s;
  margin-left: 2rem;
}

.hero-card.card-3 {
  animation-delay: 1s;
}

.card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.card-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f2ff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Grid - Simplified */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.about-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Services Grid - Simplified */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--warning);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Testimonials - Simplified */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* FAQ - Simplified */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.faq-item p {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.trust-item p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* CTA Section */
.section-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-details p {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.social-links-inline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

.social-link-inline:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.social-icon {
  font-size: 1.5rem;
}

/* Contact Visual */
.contact-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-visual-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-visual h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-visual p {
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

/* Footer - Simplified */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-trust {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-trust-item strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.footer-trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-seo {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Instagram Float Button */
.instagram-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(193, 53, 132, 0.4);
  z-index: 998;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(193, 53, 132, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(193, 53, 132, 0.6);
  }
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(193, 53, 132, 0.6);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive - Optimized */
@media (max-width: 1024px) {
  .hero-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-container {
    padding: 0.75rem 1rem;
    min-height: 60px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-icon {
    font-size: 1.3rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-menu.active {
    max-height: 400px;
  }
  
  .nav-link {
    padding: 1rem 1.5rem;
    display: block;
    border-bottom: 1px solid var(--gray-light);
  }
  
  .btn-header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  /* Hero - Mobile optimized */
  .hero {
    padding: 120px 0 50px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .hero-feature {
    font-size: 0.85rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-large {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  /* Sections */
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Grids */
  .services-grid,
  .about-grid,
  .steps-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Cards */
  .service-card,
  .about-card,
  .step-card,
  .testimonial-card,
  .faq-item {
    padding: 1.5rem;
  }
  
  .service-card .btn,
  .about-card .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }
  
  /* Contact */
  .contact-grid {
    gap: 2rem;
  }
  
  .contact-visual {
    padding: 2rem;
  }
  
  /* CTA */
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Instagram Float */
  .instagram-float {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }
  
  /* Sticky CTA */
  .sticky-cta {
    padding: 0.4rem 0.5rem;
    min-height: 45px;
  }
  
  .sticky-cta-content {
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    width: 100%;
    flex-direction: column;
  }
  
  .sticky-cta-text {
    font-size: 0.65rem;
    width: 100%;
    text-align: center;
    line-height: 1.2;
  }
  
  .sticky-cta-text strong {
    display: inline;
  }
  
  .btn-sticky-instagram {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    white-space: nowrap;
    align-self: center;
  }
  
  .btn-sticky-instagram span:first-child {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 100px 0 40px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .service-card h3,
  .about-card h3 {
    font-size: 1.1rem;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .sticky-cta {
    padding: 0.3rem 0.5rem;
    min-height: 40px;
  }
  
  .sticky-cta-text {
    font-size: 0.6rem;
  }
  
  .btn-sticky-instagram {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
}
