/* Modern Industrial Design - Based on Driller Template */

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

/* CSS Variables for consistent theming */
:root {
  --primary-color: #FF6B35;
  --secondary-color: #1E3A8A;
  --dark-blue: #0F172A;
  --light-gray: #F8FAFC;
  --medium-gray: #64748B;
  --white: #FFFFFF;
  --black: #000000;
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  --gradient-dark: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

/* Hide scrollbar on mobile and tablet devices */
@media (max-width: 1024px) {
  /* Hide scrollbar for webkit browsers (Safari, Chrome on mobile) */
  ::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  
  /* Hide scrollbar for all elements */
  * {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  
  /* Ensure body and html don't show scrollbar */
  html, body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-blue);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

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

/* Global Select Styling */
select {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--dark-blue);
  background: var(--white);
  background-color: var(--white);
  border: 2px solid #E2E8F0;
  border-radius: var(--border-radius);
  padding: 1rem;
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 3rem;
}

select:hover {
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  transform: translateY(-1px);
}

select:active {
  transform: translateY(0);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Select Dropdown Animation */
select[size]:focus,
select[multiple]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Custom Select Container for Better Control */
.select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select-container::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--medium-gray);
  pointer-events: none;
  transition: var(--transition);
}

.select-container:hover::after {
  border-top-color: var(--primary-color);
}

.select-container select:focus + .select-container::after {
  border-top-color: var(--primary-color);
  transform: translateY(-50%) rotate(180deg);
}

/* Global Select Options - Clean White Background */
select option {
  padding: 0.75rem 1rem !important;
  background: var(--white) !important;
  color: var(--dark-blue) !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1rem !important;
  border: none !important;
  line-height: 1.5 !important;
}

select option:hover,
select option:focus {
  background: var(--light-gray) !important;
  color: var(--primary-color) !important;
}

select option:checked,
select option:selected {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

select option[value=""] {
  color: var(--medium-gray) !important;
  font-style: italic !important;
  background: var(--white) !important;
}

select option[disabled] {
  color: var(--medium-gray) !important;
  background: var(--white) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/* Enhanced Select Options with Clean White Background */
select option {
  background: var(--white) !important;
  color: var(--dark-blue) !important;
  padding: 0.75rem 1rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1rem !important;
  border: none !important;
  line-height: 1.5 !important;
}

select option:hover,
select option:focus {
  background: var(--light-gray) !important;
  color: var(--primary-color) !important;
}

select option:checked,
select option:selected {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

select option[value=""] {
  color: var(--medium-gray) !important;
  font-style: italic !important;
  background: var(--white) !important;
}

/* Emergency options with subtle red accent */
select option[value*="emergency"],
select option[value*="Emergency"],
select option[value*="ASAP"],
select option[value*="asap"] {
  background: var(--white) !important;
  color: #DC2626 !important;
  font-weight: 600 !important;
}

select option[value*="emergency"]:hover,
select option[value*="Emergency"]:hover,
select option[value*="ASAP"]:hover,
select option[value*="asap"]:hover {
  background: #FEF2F2 !important;
  color: #DC2626 !important;
}

/* Force white background for all browsers */
select option,
select > option {
  background-color: var(--white) !important;
  background: var(--white) !important;
  color: var(--dark-blue) !important;
}

/* WebKit specific styling */
select::-webkit-scrollbar {
  width: 8px;
}

select::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 4px;
}

select::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

select::-webkit-scrollbar-thumb:hover {
  background: #E55A2B;
}

/* Firefox specific styling */
@-moz-document url-prefix() {
  select {
    background-color: var(--white) !important;
  }
  
  select option {
    background-color: var(--white) !important;
    background: var(--white) !important;
    color: var(--dark-blue) !important;
  }
  
  select option:checked {
    background-color: var(--primary-color) !important;
    background: var(--primary-color) !important;
    color: var(--white) !important;
  }
}

/* Safari/WebKit specific styling */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  select {
    background-color: var(--white) !important;
  }
  
  select option {
    background-color: var(--white) !important;
    background: var(--white) !important;
    color: var(--dark-blue) !important;
  }
}

/* Edge/IE specific styling */
@supports (-ms-ime-align: auto) {
  select {
    background-color: var(--white) !important;
  }
  
  select option {
    background-color: var(--white) !important;
    background: var(--white) !important;
    color: var(--dark-blue) !important;
  }
}

/* Chrome specific styling */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
  select {
    background-color: var(--white) !important;
  }
  
  select option {
    background-color: var(--white) !important;
    background: var(--white) !important;
    color: var(--dark-blue) !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

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

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

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-call-now {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 40px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse-glow 2s infinite;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Call button text responsiveness */
.call-text-mobile,
.call-text-small {
  display: none;
}

.call-text-desktop {
  display: inline;
}

.btn-call-now:hover {
  background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  animation: none;
}

.btn-call-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-call-now:hover::before {
  left: 100%;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  }
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-orange {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
}

.btn-outline-orange:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Emergency CTA Section */
.emergency-cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.emergency-cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.emergency-cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.emergency-cta-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-emergency-cta {
  background: var(--white);
  color: var(--primary-color);
  border: 3px solid var(--white);
  padding: 20px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-emergency-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-emergency-cta:hover::before {
  left: 100%;
}

.btn-emergency-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.95);
}

.btn-emergency-cta:active {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
  .emergency-cta-section {
    padding: 4rem 0;
  }
  
  .emergency-cta-content h2 {
    font-size: 2.2rem;
  }
  
  .emergency-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .btn-emergency-cta {
    padding: 18px 35px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .emergency-cta-content h2 {
    font-size: 1.8rem;
  }
  
  .emergency-cta-content p {
    font-size: 1rem;
  }
  
  .btn-emergency-cta {
    padding: 16px 30px;
    font-size: 0.9rem;
  }
}

/* Review Logos Section */
.review-logos-section {
  background: var(--light-gray);
  padding: 3rem 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.review-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.review-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  width: 100%;
  max-width: 250px;
  height: 80px;
}

.review-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.review-logo-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}

@media (max-width: 768px) {
  .review-logos-section {
    padding: 2rem 0;
  }
  
  .review-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .review-logo-item {
    height: 70px;
  }
  
  .review-logo-item img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .review-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .review-logo-item {
    height: 60px;
    padding: 0.5rem;
  }
  
  .review-logo-item img {
    max-height: 40px;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-medium);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.logo a:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-heavy);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--primary-color);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.phone-number {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: var(--transition);
}

.phone-number:hover {
  color: var(--white);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-call-text {
  display: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-background {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .hero-background {
    background-attachment: scroll;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-blue);
  opacity: 0.4;
  z-index: 1;
  transition: all 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background.loading {
  opacity: 0.2;
  background-color: var(--dark-blue);
}

.hero-background.loaded {
  opacity: 0.4;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-dark);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-phone-highlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 3rem;
}

.phone-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
}

.phone-highlight:hover {
  color: var(--white);
}

/* Hero Form */
.hero-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
}

.hero-form h3 {
  text-align: center;
  color: var(--dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--border-radius);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-grid select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 3rem;
}

.form-grid select:hover {
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-grid select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Custom Select Options Styling - Clean White */
.form-grid select option {
  padding: 0.75rem 1rem !important;
  background: var(--white) !important;
  color: var(--dark-blue) !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1rem !important;
  border: none !important;
}

.form-grid select option:hover,
.form-grid select option:focus {
  background: var(--light-gray) !important;
  color: var(--primary-color) !important;
}

.form-grid select option:checked,
.form-grid select option:selected {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.form-grid select option[value=""] {
  color: var(--medium-gray) !important;
  font-style: italic !important;
  background: var(--white) !important;
}

.hero-form-btn {
  grid-column: 1 / -1;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.hero-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.hero-form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--light-gray);
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--dark-blue);
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

/* Statistics Section */
.stats-section {
  background: var(--gradient-dark);
  padding: 4rem 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark-blue);
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--light-gray);
}

.features h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Forms Section */
.contact-forms {
  padding: 6rem 0;
  background: var(--white);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.form-container {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.form-container h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.form-container p {
  margin-bottom: 2rem;
  color: var(--medium-gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--border-radius);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 3rem;
}

.form-group select:hover {
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Contact Form Select Options - Clean White */
.form-group select option {
  padding: 0.75rem 1rem !important;
  background: var(--white) !important;
  color: var(--dark-blue) !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1rem !important;
  border: none !important;
}

.form-group select option:hover,
.form-group select option:focus {
  background: var(--light-gray) !important;
  color: var(--primary-color) !important;
}

.form-group select option:checked,
.form-group select option:selected {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

.form-group select option[value=""] {
  color: var(--medium-gray) !important;
  font-style: italic !important;
  background: var(--white) !important;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--light-gray);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-blue);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--dark-blue);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  z-index: 999;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

.popup-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.popup-title {
  color: var(--dark-blue);
  font-size: 1.125rem;
  margin: 0;
}

.popup-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--medium-gray);
  cursor: pointer;
}

.popup-urgency {
  border-left: 4px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .logo img {
    height: 35px;
  }

  /* iPad Hero Section Fix - prevent navbar overlap */
  .hero {
    padding-top: 120px;
  }
  
  .hero-content {
    padding-top: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-contact {
    display: none;
  }

  .mobile-call-text {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  /* Reset iPad padding for mobile */
  .hero {
    padding-top: 0;
  }
  
  .hero-content {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 4.5rem !important;
    line-height: 1.1 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 1rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 900 !important;
  }

  .hero-subtitle {
    font-size: 1.6rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2rem !important;
    padding: 0 1rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-call-now {
    font-size: 1rem;
    padding: 16px 20px;
    max-width: 100%;
  }
}

/* Mobile specific styles (768px and below) */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero-content {
    padding: 5rem 1rem 3rem;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 3.2rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    padding: 0 0.5rem !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    width: 100% !important;
    font-weight: 800 !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    padding: 0 1rem;
    max-width: 100%;
    word-wrap: break-word;
  }

  .hero-buttons {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }

  .btn-call-now {
    font-size: 1.4rem !important;
    padding: 22px 32px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
    width: 95% !important;
    max-width: 100% !important;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto !important;
    font-weight: 700 !important;
  }

  /* Mobile call button text */
  .call-text-desktop {
    display: none;
  }
  
  .call-text-mobile {
    display: inline;
  }
  
  .call-text-small {
    display: none;
  }

  .btn-outline-white {
    font-size: 1.2rem !important;
    padding: 18px 28px !important;
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
    font-weight: 600 !important;
  }

  .trust-badges {
    padding: 0 1rem;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    margin: 1rem 0;
  }

  .trust-badge-large {
    height: 70px !important;
    max-width: 110px !important;
    width: auto !important;
    object-fit: contain;
    flex-shrink: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .forms-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 4rem 0.5rem 2rem;
    min-height: calc(100vh - 60px);
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.8rem !important;
    padding: 0 0.25rem !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    text-align: center !important;
    font-weight: 800 !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.2rem !important;
    padding: 0 0.5rem !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }

  .hero-buttons {
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
  }

  .btn-call-now {
    font-size: 1.3rem !important;
    padding: 20px 26px !important;
    line-height: 1.2 !important;
    width: 95% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 auto !important;
    font-weight: 700 !important;
  }

  /* Small screen call button text */
  .call-text-desktop,
  .call-text-mobile {
    display: none;
  }
  
  .call-text-small {
    display: inline;
  }

  .btn-call-now i {
    font-size: 0.9rem;
    margin-right: 0 !important;
  }

  .btn-outline-white {
    font-size: 1.1rem !important;
    padding: 16px 24px !important;
    width: 100% !important;
    max-width: 240px !important;
    text-align: center !important;
    font-weight: 600 !important;
  }

  .trust-badges {
    padding: 0 0.5rem;
    gap: 0.4rem;
    margin: 0.8rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .trust-badge-large {
    height: 55px !important;
    max-width: 85px !important;
    width: auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .hero-form-container {
    padding: 1.5rem;
  }

  .floating-call-btn {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Mobile Select Styling */
  select,
  .form-grid select,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.875rem;
    padding-right: 2.5rem;
    background-size: 14px;
    background-position: right 0.75rem center;
  }

  select option,
  .form-grid select option,
  .form-group select option {
    padding: 0.5rem 0.75rem;
    font-size: 16px;
  }

  /* Mobile Trust Badges */
  .trust-badges {
    gap: 0.8rem;
    margin: 1.5rem 0;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .trust-badge-large {
    height: 70px;
    max-width: 120px;
    width: auto;
  }

  .trust-badge-medium {
    height: 70px;
  }
}

/* Extra small mobile screens (320px-375px) */
@media (max-width: 375px) {
  .hero-content {
    padding: 3.5rem 0.25rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.05 !important;
    margin-bottom: 0.6rem !important;
    padding: 0 0.1rem !important;
    font-weight: 800 !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
    padding: 0 0.25rem !important;
  }

  .hero-buttons {
    margin-bottom: 1rem;
    padding: 0 0.25rem;
    gap: 0.6rem;
  }

  .btn-call-now {
    font-size: 1.1rem !important;
    padding: 18px 22px !important;
    max-width: 100% !important;
    gap: 8px !important;
    font-weight: 700 !important;
  }

  /* Extra small screen call button text */
  .call-text-desktop,
  .call-text-mobile {
    display: none;
  }
  
  .call-text-small {
    display: inline;
  }

  .btn-outline-white {
    font-size: 1rem !important;
    padding: 14px 20px !important;
    max-width: 220px !important;
    font-weight: 600 !important;
  }

  .trust-badges {
    gap: 0.3rem;
    margin: 0.6rem 0;
    padding: 0 0.25rem;
  }

  .trust-badge-large {
    height: 45px !important;
    max-width: 70px !important;
  }
}

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 2rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
  }

  .btn-call-now {
    font-size: 1rem !important;
    padding: 16px 20px !important;
    max-width: 100% !important;
    font-weight: 700 !important;
  }

  .btn-outline-white {
    font-size: 0.9rem !important;
    padding: 12px 18px !important;
    max-width: 200px !important;
    font-weight: 600 !important;
  }

  .trust-badge-large {
    height: 40px !important;
    max-width: 60px !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.service-card,
.feature-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Message Notifications */
.message-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.message-success {
  background: #10B981;
  color: white;
}

.message-error {
  background: #EF4444;
  color: white;
}

/* Industry Cards Styling */
.industry-cards {
  display: flex;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.industry-card {
  flex: 1;
  min-width: 200px;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
}

.industry-card.active {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Hide industry cards on tablet and mobile */
@media (max-width: 1024px) {
  .industry-cards {
    display: none;
  }
}

/* Project Gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.project-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.project-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Trust Badges Styling */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: nowrap;
}

.trust-badge {
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.trust-badge:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2)) !important;
}

.trust-badge-large {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  max-width: 200px;
}

.trust-badge-medium {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.trust-badge-small {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.trust-badge-footer {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.trust-badge-footer:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Contact Page Specific Styles */
.contact-page .form-container:hover {
  /* Removed hover effect - no shadow or transform */
}

.contact-page .contact-info-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.contact-page .contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-page .contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}

.contact-page .contact-info-card:hover .contact-icon {
  transform: scale(1.1);
}

.project-item:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-overlay h4 {
  margin: 0 0 0.5rem 0;
  color: white;
}

.project-overlay p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Trust Badges Styles */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.trust-badge {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.trust-badge:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .trust-badges {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
  }
  
  .trust-badge {
    height: 60px;
    max-width: 120px;
    flex-shrink: 0;
  }
}

/* New Testimonials Section Styles */
.testimonials-section {
  padding: 6rem 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonials-container {
  flex: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.review-date {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}

.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  padding: 2px;
}

.google-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 1px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more-btn {
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 0.85rem;
  cursor: default;
  padding: 0;
  text-align: left;
  font-weight: 400;
  pointer-events: none;
}

.slider-btn {
  background: var(--primary-color);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.slider-btn:hover {
  background: #e55a2b;
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.slider-btn:active {
  transform: scale(0.95);
}


/* Responsive styles for testimonials */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-height: 280px;
    padding: 1.25rem;
  }
  
  
  .user-avatar {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .user-name {
    font-size: 0.9rem;
  }
  
  .review-date {
    font-size: 0.75rem;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
  }
}


/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-slider {
    flex-direction: row;
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    min-height: 300px;
    padding: 1.5rem;
    margin: 0;
  }
  
  .testimonials-track {
    gap: 0;
  }
  
  .slider-btn {
    position: absolute;
    top: -60px;
    transform: none;
    z-index: 2;
  }
  
  .prev-btn {
    left: 50%;
    margin-left: -60px;
  }
  
  .next-btn {
    right: 50%;
    margin-right: -60px;
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    min-height: 320px;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-header h2 {
    font-size: 1.8rem;
  }
  
  .testimonials-slider {
    margin-top: 3.5rem;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    margin: 0;
    padding: 1.25rem;
    min-height: 280px;
  }
  
  .testimonials-track {
    gap: 0;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    top: -50px;
  }
  
  .prev-btn {
    left: 50%;
    margin-left: -50px;
  }
  
  .next-btn {
    right: 50%;
    margin-right: -50px;
  }
  
} 
/* Coupons Section Styles */
.coupons-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.coupons-header {
  text-align: center;
  margin-bottom: 4rem;
}

.coupons-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.coupons-call-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.coupons-call-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.coupon-card {
  background: var(--white);
  border: 3px dashed var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  overflow: hidden;
}

.coupon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.coupon-scissors {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: var(--primary-color);
  z-index: 2;
}

.coupon-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.coupon-image {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.coupon-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.coupon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enhanced zoom for coupon images to show whole door system with better visibility */
.coupon-image-zoomed img {
  object-fit: contain !important;
  object-position: center !important;
  background-color: #f8f9fa;
  padding: 4px;
  transform: scale(1.25) !important;
  transition: transform 0.3s ease;
}

.coupon-image-zoomed:hover img {
  transform: scale(1.35) !important;
}


.coupon-info {
  flex: 1;
}

.coupon-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coupon-instruction {
  font-size: 0.75rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.coupon-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.coupon-discount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #DC2626;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.coupon-description {
  font-size: 0.9rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-weight: 500;
}

.coupon-terms {
  font-size: 0.7rem;
  color: var(--medium-gray);
  line-height: 1.3;
  font-style: italic;
  border-top: 1px solid #E2E8F0;
  padding-top: 0.5rem;
}

/* Responsive Design for Coupons */
@media (max-width: 768px) {
  .coupons-section {
    padding: 4rem 0;
  }
  
  .coupons-header h2 {
    font-size: 2rem;
  }
  
  .coupons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .coupon-card {
    padding: 1rem;
  }
  
  .coupon-content {
    flex-direction: column;
    text-align: center;
  }
  
  .coupon-image {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
  
  .coupon-discount {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .coupons-header h2 {
    font-size: 1.75rem;
  }
  
  .coupons-call-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .coupon-title {
    font-size: 1rem;
  }
  
  .coupon-discount {
    font-size: 1.3rem;
  }
}


/* Enhanced Popup Notifications - Fixed Animation */
.popup-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 380px;
  z-index: 1001;
  border: 1px solid #E2E8F0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.popup-notification.popup-visible {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.popup-notification.popup-hidden {
  transform: translateX(100%) !important;
  opacity: 0 !important;
}

.popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.popup-title {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.popup-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--medium-gray);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.popup-close:hover:not(:disabled) {
  background: #F1F5F9;
  color: var(--dark-blue);
  transform: scale(1.1);
}

.popup-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.popup-text {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.popup-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.popup-phone-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.popup-phone-number {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.popup-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.popup-btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.popup-btn-primary:hover:not(:disabled) {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.popup-btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

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

.popup-btn-secondary:hover:not(:disabled) {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.popup-btn-secondary:active:not(:disabled) {
  transform: translateY(0);
}

.popup-urgency {
  border-left: 4px solid var(--primary-color);
  background: linear-gradient(135deg, #FFF5F5 0%, var(--white) 100%);
}

.popup-urgency .popup-title {
  color: #DC2626;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    padding: 1.5rem;
  }
  
  .popup-title {
    font-size: 1.2rem;
  }
  
  .popup-text {
    font-size: 0.95rem;
  }
  
  .popup-phone-number {
    font-size: 1.1rem;
  }
  
  .popup-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .popup-notification {
    padding: 1.25rem;
  }
  
  .popup-header {
    margin-bottom: 1rem;
  }
  
  .popup-content {
    gap: 1.25rem;
  }
  
  .popup-title {
    font-size: 1.1rem;
  }
  
  .popup-phone {
    padding: 0.875rem;
  }
}

/* Animation performance optimizations */
@media (prefers-reduced-motion: reduce) {
  .popup-notification {
    transition: none;
  }
  
  .popup-btn {
    transition: none;
  }
  
  .popup-close {
    transition: none;
  }
}

/* ========================================
   SERVICE PAGES MODERN DESIGN
   ======================================== */

/* Service Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--secondary-color) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.page-header h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Service Overview Section */
.service-overview {
  padding: 6rem 0;
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-text {
  padding: 2rem 0;
}

.service-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 2.5rem;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.service-benefits li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--dark-blue);
  font-weight: 500;
  border-bottom: 1px solid #F1F5F9;
  transition: var(--transition);
}

.service-benefits li:hover {
  background: var(--light-gray);
  padding-left: 1rem;
  border-radius: var(--border-radius);
  border-bottom: 1px solid transparent;
}

.service-benefits li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.service-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
}

.service-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Modern Card Sections */
.modern-section {
  padding: 6rem 0;
}

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

.modern-section.bg-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin: 0;
}

/* Modern Grid System */
.modern-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.modern-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.modern-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.modern-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Modern Cards */
.modern-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #F1F5F9;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

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

.modern-card .card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.modern-card .card-emoji {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.modern-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}

.modern-card p {
  color: var(--medium-gray);
  line-height: 1.7;
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: var(--transition);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--medium-gray);
  line-height: 1.6;
  margin: 0;
}

/* CTA Sections */
.service-cta {
  padding: 5rem 0;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.service-cta .container {
  position: relative;
  z-index: 2;
}

.service-cta h2 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
  border: 3px solid var(--white);
  padding: 20px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-white:hover::before {
  left: 100%;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.95);
}

/* Warning/Alert Sections */
.warning-section {
  background: linear-gradient(135deg, #DC2626 0%, #7C2D12 100%);
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.warning-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warning" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M7.5 0L15 13H0L7.5 0z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23warning)"/></svg>');
}

.warning-section .container {
  position: relative;
  z-index: 2;
}

.warning-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.warning-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ========================================
   SERVICE PAGES RESPONSIVE DESIGN
   ======================================== */

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-image {
    order: -1;
  }
  
  .modern-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  
  .modern-grid.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .modern-grid.cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Page Header Mobile */
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  /* Service Overview Mobile */
  .service-overview {
    padding: 4rem 0;
  }
  
  .service-text {
    padding: 1rem 0;
  }
  
  .service-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .service-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .service-image img {
    height: 300px;
  }
  
  /* Modern Sections Mobile */
  .modern-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  /* Modern Grid Mobile */
  .modern-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .modern-grid.cols-2,
  .modern-grid.cols-3,
  .modern-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  
  /* Modern Cards Mobile */
  .modern-card {
    padding: 2rem 1.5rem;
    margin: 0;
  }
  
  .modern-card .card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .modern-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .modern-card p {
    font-size: 0.95rem;
  }
  
  /* Process Steps Mobile */
  .process-step .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .process-step p {
    font-size: 0.95rem;
  }
  
  /* CTA Sections Mobile */
  .service-cta {
    padding: 4rem 0;
  }
  
  .service-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .service-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .btn-white {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  /* Warning Section Mobile */
  .warning-section {
    padding: 3rem 2rem;
    margin: 0 1rem;
  }
  
  .warning-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .warning-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  .page-header {
    padding: 5rem 0 2rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .page-header p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  /* Service Overview Extra Small */
  .service-overview {
    padding: 3rem 0;
  }
  
  .service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .service-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .service-benefits li {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }
  
  .service-image img {
    height: 250px;
  }
  
  /* Modern Sections Extra Small */
  .modern-section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  /* Modern Grid Extra Small */
  .modern-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  /* Modern Cards Extra Small */
  .modern-card {
    padding: 1.5rem 1rem;
  }
  
  .modern-card .card-emoji {
    font-size: 2.5rem;
  }
  
  .modern-card h3 {
    font-size: 1.2rem;
  }
  
  .modern-card p {
    font-size: 0.9rem;
  }
  
  /* Process Steps Extra Small */
  .process-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .process-step h3 {
    font-size: 1.1rem;
  }
  
  .process-step p {
    font-size: 0.9rem;
  }
  
  /* CTA Sections Extra Small */
  .service-cta {
    padding: 3rem 0;
  }
  
  .service-cta h2 {
    font-size: 1.8rem;
  }
  
  .service-cta p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .btn-white {
    padding: 14px 28px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  /* Warning Section Extra Small */
  .warning-section {
    padding: 2rem 1rem;
    margin: 0 0.5rem;
  }
  
  .warning-section h2 {
    font-size: 1.6rem;
  }
  
  .warning-section p {
    font-size: 0.95rem;
  }
}

/* ========================================
   ABOUT US PAGE RESPONSIVE DESIGN
   ======================================== */

/* About Page Responsive Styles */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

@media (max-width: 768px) {
  /* About Page Header */
  .about-page .page-header {
    padding: 6rem 0 3rem !important;
  }
  
  .about-page .page-header h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  
  .about-page .page-header p {
    font-size: 1.1rem !important;
    padding: 0 1rem !important;
  }
  
  /* About Sections */
  .about-page section {
    padding: 4rem 0 !important;
  }
  
  .about-page section h2 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .about-page section h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }
  
  .about-page section p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* About Grid Adjustments */
  .about-grid {
    gap: 2rem !important;
  }
  
  .about-image img {
    height: 300px !important;
  }
  
  /* Mission & Values Cards */
  .about-page section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .about-page section div[style*="padding: 2.5rem"] {
    padding: 2rem !important;
  }
  
  /* Why Choose Us Section */
  .why-choose-grid {
    gap: 2rem !important;
    text-align: center !important;
  }
  
  .about-page .why-choose-section h2 {
    text-align: center !important;
  }
  
  .about-page .why-choose-section p {
    text-align: center !important;
  }
  
  .about-page .service-benefits {
    text-align: center !important;
    list-style: none !important;
    padding: 0 !important;
  }
  
  .about-page .service-benefits li {
    font-size: 1rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  /* CTA Section */
  .about-page section div[style*="flex"] {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .about-page section a[style*="display: flex"] {
    justify-content: center !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile - About Page */
  .about-page .page-header {
    padding: 5rem 0 2rem !important;
  }
  
  .about-page .page-header h1 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }
  
  .about-page .page-header p {
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
  }
  
  /* About Sections Extra Small */
  .about-page section {
    padding: 3rem 0 !important;
  }
  
  /* Why Choose Us Section - Extra centering for small screens */
  .about-page .why-choose-section {
    text-align: center !important;
  }
  
  .about-page .why-choose-section div {
    text-align: center !important;
  }
  
  .about-page section h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
  }
  
  .about-page section h3 {
    font-size: 1.2rem !important;
  }
  
  .about-page section p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.2rem !important;
  }
  
  /* About Image */
  .about-image img {
    height: 250px !important;
  }
  
  /* Cards Padding */
  .about-page section div[style*="padding: 2.5rem"] {
    padding: 1.5rem !important;
  }
  
  /* Emoji Icons */
  .about-page section div[style*="font-size: 3rem"] {
    font-size: 2.5rem !important;
  }
  
  /* Service Benefits */
  .about-page .service-benefits li {
    font-size: 0.9rem !important;
    margin-bottom: 0.6rem !important;
  }
  
  /* CTA Button */
  .about-page section a[style*="display: flex"] {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

/* ========================================
   CONTACT US PAGE RESPONSIVE DESIGN
   ======================================== */

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
  .contact-page .forms-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  /* Contact Page Header */
  .contact-page section[style*="padding: 8rem 0 4rem"] {
    padding: 6rem 0 3rem !important;
  }
  
  .contact-page section h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  
  .contact-page section p {
    font-size: 1.1rem !important;
    padding: 0 1rem !important;
  }
  
  /* Contact Info Cards */
  .contact-page section[style*="padding: 4rem 0"] {
    padding: 3rem 0 !important;
  }
  
  .contact-page section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Contact Forms Section */
  .contact-page section[style*="padding: 6rem 0"] {
    padding: 4rem 0 !important;
  }
  
  .contact-page section h2 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .contact-page section h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Trust Badges in Contact */
  .contact-page section div[style*="display: flex"] img {
    height: 80px !important;
  }
  
  /* Form Containers */
  .contact-page .form-container {
    padding: 2rem !important;
  }
  
  /* Form Elements */
  .contact-page .form-group input,
  .contact-page .form-group select,
  .contact-page .form-group textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 0.875rem !important;
  }
  
  /* Buttons */
  .contact-page .btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  /* Emergency CTA */
  .contact-page section[style*="background: var(--gradient-primary)"] {
    padding: 3rem 0 !important;
  }
  
  .contact-page section[style*="background: var(--gradient-primary)"] h2 {
    font-size: 2rem !important;
  }
  
  .contact-page section[style*="background: var(--gradient-primary)"] p {
    font-size: 1rem !important;
    padding: 0 1rem !important;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile - Contact Page */
  .contact-page section[style*="padding: 8rem 0 4rem"] {
    padding: 5rem 0 2rem !important;
  }
  
  .contact-page section h1 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }
  
  .contact-page section p {
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
  }
  
  /* Contact Sections Extra Small */
  .contact-page section[style*="padding: 4rem 0"],
  .contact-page section[style*="padding: 6rem 0"] {
    padding: 3rem 0 !important;
  }
  
  .contact-page section h2 {
    font-size: 1.8rem !important;
  }
  
  .contact-page section h3 {
    font-size: 1.2rem !important;
  }
  
  /* Trust Badges Extra Small */
  .contact-page section div[style*="display: flex"] {
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
  }
  
  .contact-page section div[style*="display: flex"] img {
    height: 70px !important;
  }
  
  /* Form Containers Extra Small */
  .contact-page .form-container {
    padding: 1.5rem !important;
  }
  
  /* Form Elements Extra Small */
  .contact-page .form-group {
    margin-bottom: 1rem !important;
  }
  
  .contact-page .form-group input,
  .contact-page .form-group select,
  .contact-page .form-group textarea {
    padding: 0.75rem !important;
    font-size: 16px !important;
  }
  
  /* Checkbox Group */
  .contact-page .checkbox-group {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  
  .contact-page .checkbox-group label {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  /* Buttons Extra Small */
  .contact-page .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem !important;
    width: 100% !important;
  }
  
  /* Emergency CTA Extra Small */
  .contact-page section[style*="background: var(--gradient-primary)"] {
    padding: 2.5rem 0 !important;
  }
  
  .contact-page section[style*="background: var(--gradient-primary)"] h2 {
    font-size: 1.8rem !important;
  }
  
  .contact-page section[style*="background: var(--gradient-primary)"] p {
    font-size: 0.95rem !important;
    padding: 0 0.5rem !important;
  }
}

/* Payment Methods Section */
.payment-methods-section {
  padding: 4rem 0;
  background: var(--light-gray);
  border-top: 1px solid #E2E8F0;
}

.payment-methods-header {
  text-align: center;
  margin-bottom: 3rem;
}

.payment-methods-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.payment-methods-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.payment-method-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 80px;
}

.payment-method-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.payment-method-image {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.payment-methods-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.payment-methods-note p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Responsive Design for Payment Methods */
@media (max-width: 768px) {
  .payment-methods-section {
    padding: 3rem 0;
  }
  
  .payment-methods-header h2 {
    font-size: 1.75rem;
  }
  
  .payment-methods-grid {
    gap: 1.5rem;
  }
  
  .payment-method-item {
    padding: 1rem;
    min-width: 100px;
    min-height: 70px;
  }
  
  .payment-method-image {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .payment-methods-section {
    padding: 2.5rem 0;
  }
  
  .payment-methods-header h2 {
    font-size: 1.5rem;
  }
  
  .payment-methods-grid {
    gap: 1rem;
  }
  
  .payment-method-item {
    padding: 0.75rem;
    min-width: 80px;
    min-height: 60px;
  }
  
  .payment-method-image {
    max-height: 35px;
  }
  
  .payment-methods-note p {
    font-size: 0.9rem;
  }
}

  .suppliers-section {
    padding: 3rem 0;
  }
  
  .suppliers-header h2 {
    font-size: 1.75rem;
  }
  
  .suppliers-grid {
    gap: 1.5rem;
  }
  
  .supplier-item {
    min-width: 100px;
    min-height: 70px;
    padding: 1rem 0.75rem;
  }
  
  .supplier-logo {
    max-width: 80px;
    max-height: 40px;
  }
  
  .suppliers-note p {
    font-size: 0.95rem;
  }

/* Updated Suppliers Section for All Companies */
.suppliers-section {
  padding: 5rem 0;
  background: var(--white);
  border-bottom: 1px solid #E2E8F0;
}

.suppliers-header {
  text-align: center;
  margin-bottom: 4rem;
}

.suppliers-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.suppliers-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.supplier-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  border: 1px solid #F1F5F9;
}

.supplier-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.supplier-logo {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.9);
  transition: var(--transition);
}

.supplier-item:hover .supplier-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.suppliers-note {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.suppliers-note p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Responsive Design for All Suppliers */
@media (max-width: 1200px) {
  .suppliers-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
  
  .supplier-item {
    padding: 1.5rem 1.25rem;
    min-height: 90px;
  }
  
  .supplier-logo {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .suppliers-section {
    padding: 4rem 0;
  }
  
  .suppliers-header h2 {
    font-size: 2rem;
  }
  
  .suppliers-header p {
    font-size: 1rem;
  }
  
  .suppliers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  
  .supplier-item {
    padding: 1.25rem 1rem;
    min-height: 80px;
  }
  
  .supplier-logo {
    max-width: 100px;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .suppliers-section {
    padding: 3rem 0;
  }
  
  .suppliers-header h2 {
    font-size: 1.75rem;
  }
  
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .supplier-item {
    padding: 1rem 0.75rem;
    min-height: 70px;
  }
  
  .supplier-logo {
    max-width: 80px;
    max-height: 40px;
  }
  
  .suppliers-note p {
    font-size: 0.95rem;
  }
}

/* Custom Calendar Styles */
.custom-date-picker {
  position: relative;
  width: 100%;
}

.calendar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: none;
}

.date-picker-button {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--border-radius);
  background: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--dark-blue);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
}

.date-picker-button:hover {
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.date-picker-button:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.date-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.date-text {
  flex: 1;
  font-weight: 500;
}

.date-arrow {
  font-size: 0.8rem;
  color: var(--medium-gray);
  transition: var(--transition);
}

.calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  z-index: 9999999;
  margin-top: 0.5rem;
  animation: slideDown 0.3s ease;
}

.calendar-dropdown-upward {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.5rem;
  animation: slideUp 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #E2E8F0;
  background: var(--light-gray);
}

.calendar-nav-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-btn:hover {
  background: #e55a2b;
  transform: scale(1.1);
}

.calendar-month-year {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
  text-align: center;
  flex: 1;
}

.calendar-grid {
  padding: 1rem;
}

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--medium-gray);
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-blue);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.calendar-day:hover:not(:disabled):not(.calendar-day-empty) {
  background: var(--light-gray);
  transform: scale(1.1);
}

.calendar-day-empty {
  cursor: default;
}

.calendar-day-disabled {
  color: #CBD5E1;
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-day-disabled:hover {
  background: transparent;
  transform: none;
}

.calendar-day-selected {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.calendar-day-selected:hover {
  background: #e55a2b !important;
  transform: scale(1.05);
}

.calendar-day-today {
  background: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
}

.calendar-day-today:hover {
  background: #1E40AF;
}

.calendar-day-today.calendar-day-selected {
  background: var(--primary-color) !important;
}

/* Mobile Calendar Styles */
@media (max-width: 768px) {
  .calendar-backdrop {
    display: block;
  }

  .calendar-dropdown,
  .calendar-dropdown-upward {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 400px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 12px;
    animation: modalSlideIn 0.3s ease;
    z-index: 9999999;
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  .calendar-header {
    padding: 1.25rem;
  }

  .calendar-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .calendar-month-year {
    font-size: 1.2rem;
  }

  .calendar-grid {
    padding: 1.25rem;
  }

  .calendar-day {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .calendar-days {
    gap: 0.5rem;
  }

  .calendar-days-header {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .calendar-day-name {
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .date-picker-button {
    padding: 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .calendar-dropdown {
    width: 95vw;
  }

  .calendar-header {
    padding: 1rem;
  }

  .calendar-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .calendar-month-year {
    font-size: 1.1rem;
  }

  .calendar-grid {
    padding: 1rem;
  }

  .calendar-day {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .calendar-days {
    gap: 0.25rem;
  }

  .calendar-days-header {
    gap: 0.25rem;
  }

  .calendar-day-name {
    font-size: 0.8rem;
  }
}

/* Success Page Styles */
.success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-gray) 0%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
}

.success-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.success-container {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.success-content {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-heavy);
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.success-icon {
  margin-bottom: 2rem;
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.success-message {
  margin-bottom: 2rem;
}

.success-message p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.success-contact-info {
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-blue);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.success-btn {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  min-width: 180px;
  justify-content: center;
}

.success-btn.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.success-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.success-btn.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.success-additional-info {
  border-top: 1px solid #E2E8F0;
  padding-top: 2rem;
}

.success-additional-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

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

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.4;
}

/* Responsive Design for Success Page */
@media (max-width: 768px) {
  .success-content {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .success-title {
    font-size: 1.5rem;
  }
  
  .success-message p {
    font-size: 1rem;
  }
  
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .success-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .success-page {
    padding: 1rem 0.5rem;
  }
  
  .success-content {
    padding: 1.5rem 1rem;
  }
  
  .success-title {
    font-size: 1.25rem;
  }
  
  .success-icon svg {
    width: 60px;
    height: 60px;
  }
}
