/*
Theme Name: Pavage MGMT
Theme URI: https://pavagemgmt.com
Author: Pavage MGMT
Author URI: https://pavagemgmt.com
Description: Thème professionnel pour Pavage MGMT - Asphaltage et pavé-uni à Saint-Lin et sur la Rive-Nord
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pavage-mgmt
Tags: construction, paving, landscaping, french, responsive
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-gray: #2d2d2d;
  --mid-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --orange: #f47c20;
  --orange-dark: #d4651a;
  --orange-light: #ff9440;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ===========================
   UTILITY CLASSES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
}

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

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(244, 124, 32, 0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 124, 32, 0.5);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

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

/* ===========================
   HEADER / NAVIGATION
=========================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--orange);
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--orange);
  background: rgba(244, 124, 32, 0.1);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
=========================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.75) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(244, 124, 32, 0.03) 40px,
      rgba(244, 124, 32, 0.03) 41px
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 124, 32, 0.15);
  border: 1px solid rgba(244, 124, 32, 0.4);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-badge::before {
  content: '●';
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 820px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--orange);
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.top-bar a {
  color: var(--white);
  text-decoration: underline;
}

/* ===========================
   SERVICES SECTION
=========================== */
#services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(244, 124, 32, 0.3);
}

.service-card h3 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-link:hover {
  gap: 10px;
}

/* ===========================
   WHY CHOOSE US
=========================== */
#why-us {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,124,32,0.1) 0%, transparent 70%);
}

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

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

.why-content {
  position: relative;
  z-index: 1;
}

.why-intro {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.why-feature:hover {
  background: rgba(244, 124, 32, 0.1);
  border-color: rgba(244, 124, 32, 0.3);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-feature-text h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 6px;
}

.why-feature-text p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}

.why-visual {
  position: relative;
  z-index: 1;
}

.why-image-stack {
  position: relative;
  height: 480px;
}

.why-img-main {
  position: absolute;
  width: 80%;
  height: 380px;
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  top: 0;
  right: 0;
}

.why-img-secondary {
  position: absolute;
  width: 50%;
  height: 220px;
  background: var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  bottom: 0;
  left: 0;
  border: 4px solid var(--dark);
}

.why-img-main img,
.why-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.why-badge-number {
  font-size: 32px;
  display: block;
  line-height: 1;
}

/* ===========================
   GALLERY SECTION
=========================== */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--light-gray);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-gray), var(--mid-gray));
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  gap: 10px;
}

.gallery-placeholder span {
  font-size: 36px;
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 72px;
  color: var(--orange);
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  opacity: 0.8;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
}

.testimonial-location {
  color: var(--text-light);
  font-size: 13px;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 18px;
  margin-top: 4px;
  letter-spacing: 2px;
}

/* ===========================
   SERVICE AREA
=========================== */
#service-area {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

#service-area .section-title {
  color: var(--white);
}

#service-area .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.area-tag {
  background: rgba(244,124,32,0.15);
  border: 1px solid rgba(244,124,32,0.3);
  color: var(--orange);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.area-tag.primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ===========================
   CONTACT SECTION
=========================== */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-detail:hover {
  background: rgba(244,124,32,0.08);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-content strong {
  display: block;
  color: var(--dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-content a,
.contact-detail-content span {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.contact-detail-content a:hover {
  color: var(--orange);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--light-gray);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  font-size: 24px;
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links a::before {
  content: '›';
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: var(--orange);
  font-size: 13px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,124,32,0.15);
  border: 1px solid rgba(244,124,32,0.3);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===========================
   STICKY PHONE BUTTON
=========================== */
.sticky-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(244,124,32,0.5);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.sticky-phone:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
  animation: none;
  color: var(--white);
}

.sticky-phone-icon {
  font-size: 20px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-visual {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 2px solid var(--orange);
    backdrop-filter: blur(10px);
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .main-nav a {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 250px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .sticky-phone span:not(.sticky-phone-icon) {
    display: none;
  }
  
  .sticky-phone {
    padding: 16px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
  }
  
  .contact-form-wrapper {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 14px 16px;
  }
  
  .logo-name {
    font-size: 18px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:first-child {
    height: 220px;
  }
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
