/* ============================================
   AK VİNÇ - Karşıyaka Kiralık Vinç
   Profesyonel Web Sitesi Stil Dosyası
   ============================================ */

/* --- CSS Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #2c2e2d;
  --gold: #d4a843;
  --gold-dark: #b8922e;
  --light: #f8f8f8;
  --white: #ffffff;
  --gray: #6a6c6c;
  --gray-light: #e8e8e8;
  --text: #444444;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--gold);
}
ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a {
  color: var(--gold);
}
.top-bar a:hover {
  color: #fff;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left span,
.top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* --- Header & Navigation --- */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 55px;
  width: auto;
}
.logo a {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 12px 16px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  letter-spacing: -0.01em;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after {
  transform: scaleX(1);
}
.nav-menu > li:hover > a,
.nav-menu > li.active > a {
  color: var(--gold-dark);
}

/* Dropdown */
.nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--gold);
}
.nav-menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light);
  transition: var(--transition);
}
.dropdown li:last-child a {
  border-bottom: none;
}
.dropdown li a:hover {
  background: var(--light);
  color: var(--gold-dark);
  padding-left: 24px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1b1a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 168, 67, 0.25);
}
.hero h1 {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero h1 span {
  color: var(--gold);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-large {
  max-width: 380px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #1a1b1a;
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}
.section-light {
  background: var(--light);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header .overline {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--gold-dark);
}
.service-card h3 a {
  color: var(--dark);
}
.service-card h3 a:hover {
  color: var(--gold-dark);
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
}
.service-card .card-link:hover {
  gap: 10px;
}

/* --- About / Why Us --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .overline {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}
.about-text p {
  color: var(--gray);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-dark);
}
.about-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.about-feature p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.about-image-box .big-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-image-box .big-text {
  font-size: 1.2rem;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.about-image-box .sub-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--dark);
}
.cta-section p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
}
.cta-section .btn-dark {
  margin-top: 10px;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin: 15px 0;
}
.cta-phone a {
  color: #fff;
}
.cta-phone svg {
  width: 28px;
  height: 28px;
}

/* --- Equipment List --- */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.equipment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.equipment-card svg {
  width: 50px;
  height: 50px;
  fill: var(--gold-dark);
  margin-bottom: 15px;
}
.equipment-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.equipment-card h3 a {
  color: var(--dark);
}
.equipment-card h3 a:hover {
  color: var(--gold-dark);
}
.equipment-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* --- Breadcrumb --- */
.breadcrumb-section {
  background: var(--dark);
  padding: 40px 0;
}
.breadcrumb-section h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Content Page --- */
.content-section {
  padding: 60px 0;
}
.content-section h2 {
  margin-top: 30px;
}
.content-section p {
  color: var(--gray);
  line-height: 1.8;
}
.content-section ul {
  margin: 15px 0 15px 20px;
}
.content-section ul li {
  padding: 6px 0;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
}
.content-section ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14px;
}
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.sidebar-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 25px;
}
.sidebar-box h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-menu li a {
  display: block;
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-menu li:last-child a {
  border-bottom: none;
}
.sidebar-menu li a:hover {
  color: var(--gold-dark);
  padding-left: 8px;
}
.sidebar-contact {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.sidebar-contact h4 {
  color: var(--gold);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.sidebar-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.sidebar-contact .phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin: 10px 0;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-info-list li:last-child {
  border-bottom: none;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-dark);
}
.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
}
.contact-info-text span {
  font-size: 0.9rem;
  color: var(--gray);
}
.contact-info-text a {
  color: var(--gold-dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: var(--transition);
  background: var(--light);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 50px;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* --- FAQ --- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--gold-dark);
}
.faq-question .icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 18px;
  color: var(--gray);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- Page Contact Form (Teklif Formu) --- */
.page-form-section {
  background: var(--light);
  padding: 70px 0;
}
.page-form-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.page-form-section .form-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.page-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.page-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.page-form-wrapper .form-group {
  margin-bottom: 16px;
}
.page-form-wrapper .form-group.full {
  grid-column: 1 / -1;
}
.page-form-wrapper label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.page-form-wrapper input,
.page-form-wrapper select,
.page-form-wrapper textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s ease;
}
.page-form-wrapper input:focus,
.page-form-wrapper select:focus,
.page-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.page-form-wrapper textarea {
  resize: vertical;
  min-height: 100px;
}
.page-form-wrapper .btn-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}
.page-form-wrapper .btn-submit:hover {
  background: var(--gold-dark);
}
.page-form-wrapper .btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success svg {
  width: 60px;
  height: 60px;
  fill: #27ae60;
  margin-bottom: 15px;
}
.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-success p {
  color: var(--gray);
}
@media (max-width: 480px) {
  .page-form-wrapper {
    padding: 24px 18px;
  }
  .page-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-about p {
  margin-top: 15px;
}
.footer-about .logo img {
  height: 45px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact li svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-sister-sites {
  margin-top: 10px;
}
.footer-sister-sites a {
  color: var(--gold);
  margin: 0 8px;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Phone Float */
.phone-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.phone-float:hover {
  transform: scale(1.1);
}
.phone-float svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(212, 168, 67, 0);
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .btn-group {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .top-bar-left,
  .top-bar-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--light);
  }
  .nav-menu > li > a::after {
    display: none;
  }
  .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: var(--light);
  }
  .dropdown li a {
    padding-left: 35px;
  }
  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section {
    padding: 50px 0;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-phone {
    font-size: 1.3rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Utility --- */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.mt-20 {
  margin-top: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
