/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/*! Critical CSS - Load First */
*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}

/* Standard properties for better compatibility */
button, input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Fix for vertical-align warning */
img, svg {
  display: block;
  vertical-align: middle;
}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,.sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub,.sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}img,svg{display:block;vertical-align:middle}img{max-width:100%}

/* Premium Title Styles */
.premium-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 1rem;
}

.premium-title h1,
.premium-title h2,
.premium-title h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.premium-title h1 i,
.premium-title h2 i,
.premium-title h3 i {
  margin-right: 15px;
  color: #3b82f6;
  font-size: 0.9em;
  vertical-align: middle;
}

.premium-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .premium-title h1 {
    font-size: 2rem;
  }
  
  .premium-title h2 {
    font-size: 1.75rem;
  }
  
  .premium-subtitle {
    font-size: 1.1rem;
  }
}

/* Critical CSS */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #FFFFFF;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ================= NAV ================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(10, 42, 90, 0.1);
  z-index: 1000;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled {
  padding: 10px 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0A2A5A;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
  height: 50px; /* Fixed height for the logo container */
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px; /* Adjust based on your logo's aspect ratio */
  width: auto;
  max-width: 180px; /* Adjust based on your logo's width */
  transition: all 0.3s ease;
}

/* Logo text style */
.logo-text {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0A2A5A;
  margin-left: 8px;
  line-height: 1;
  vertical-align: middle;
}

/* Ensure the logo link is properly aligned */
.logo a[href="index.html"] {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-img {
    height: 30px;
  }
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0A2A5A;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li {
  margin: 0;
  padding: 0;
  position: relative;
}

nav ul li a {
  font-weight: 500;
  color: #0A2A5A;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #1ABC9C;
  text-decoration: none;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 6px;
  left: 0;
  background: linear-gradient(90deg, #0A2A5A, #1ABC9C);
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
  opacity: 1;
}

/* Add subtle animation to nav items */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

nav ul li {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }

/* ================= LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  border-radius: 16px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin: 40px 0 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;
  background: radial-gradient(circle at 70% 50%, rgba(26, 188, 156, 0.1) 0%, rgba(10, 42, 90, 0) 50%);
  z-index: -1;
  border-radius: 20px;
}

.hero-content {
  max-width: 600px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  min-width: 140px;
  text-align: center;
}

/* Process Visualization - Removed */

/* Premium 3D Shipping Visualization */
.hero-visualization {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  transform-style: preserve-3d;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f8ff 0%, #e6f2ff 100%);
}

.premium-ship-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.premium-ship {
  position: relative;
  width: 400px;
  height: 300px;
  transform-style: preserve-3d;
  animation: float 8s ease-in-out infinite;
}

.ship-3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
  transform: translateZ(80px) rotateY(-10deg);
  animation: ship-move 12s ease-in-out infinite;
  will-change: transform;
}

.ocean {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 400%;
  height: 200px;
  background: linear-gradient(180deg, #1e88e5 0%, #0d47a1 100%);
  border-radius: 40%;
  opacity: 0.9;
  transform: translateX(-50%) rotateX(60deg) translateZ(-40px);
  animation: wave 10s linear infinite;
  z-index: 1;
}

.ocean-wave {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 400%;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 40%;
  transform: translateX(-50%) rotateX(60deg) translateZ(-20px);
  animation: wave2 8s linear infinite;
  z-index: 2;
  opacity: 0.7;
}

.ship-wake {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 300px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateX(-50%) translateZ(-10px);
  filter: blur(8px);
  animation: wake 3s ease-in-out infinite;
  z-index: 3;
}

.ship-foam {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 250px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateX(-50%) translateZ(0);
  filter: blur(5px);
  animation: foam 4s ease-in-out infinite;
  z-index: 4;
}

.ship-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #0A2A5A;
  font-weight: 600;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
  opacity: 0.9;
  z-index: 5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* Enhanced Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0) rotateY(-10deg);
  }
  50% { 
    transform: translateY(-15px) rotateY(-5deg);
  }
}

@keyframes ship-move {
  0%, 100% { 
    transform: translateZ(80px) rotateY(-10deg) rotateZ(-1deg);
  }
  50% { 
    transform: translateZ(80px) rotateY(-15deg) rotateZ(1deg);
  }
}

@keyframes wave {
  0% { 
    transform: translateX(-50%) rotateX(60deg) translateZ(-40px) rotateZ(0deg);
  }
  100% { 
    transform: translateX(-50%) rotateX(60deg) translateZ(-40px) rotateZ(360deg);
  }
}

@keyframes wave2 {
  0% { 
    transform: translateX(-50%) rotateX(60deg) translateZ(-20px) rotateZ(0deg);
  }
  100% { 
    transform: translateX(-50%) rotateX(60deg) translateZ(-20px) rotateZ(-360deg);
  }
}

@keyframes wake {
  0%, 100% { 
    transform: translateX(-50%) translateZ(-10px) scaleX(0.9);
    opacity: 0.4;
  }
  50% { 
    transform: translateX(-50%) translateZ(-10px) scaleX(1.1);
    opacity: 0.6;
  }
}

@keyframes foam {
  0%, 100% { 
    transform: translateX(-50%) translateZ(0) scaleX(0.95);
    opacity: 0.3;
  }
  50% { 
    transform: translateX(-50%) translateZ(0) scaleX(1.05);
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateY(5deg); }
}

@keyframes ship-move {
  0%, 100% { transform: translateZ(50px) rotateZ(-2deg); }
  50% { transform: translateZ(50px) rotateZ(2deg); }
}

@keyframes wave {
  0%, 100% { transform: rotateX(60deg) translateZ(-20px) scaleY(1); }
  50% { transform: rotateX(60deg) translateZ(-20px) scaleY(1.1); }
}

@keyframes wake {
  0%, 100% { transform: translateX(-50%) translateZ(-30px) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) translateZ(-30px) scale(1.2); opacity: 0.5; }
}

.shipping-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(5deg); }
  50% { transform: translateY(-10px) rotateX(7deg) rotateY(7deg); }
}

.shipping-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 42, 90, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.shipping-item .icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #1ABC9C;
  transition: all 0.3s ease;
}

.shipping-item .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2A5A;
  text-align: center;
  opacity: 0.9;
}

/* Position each shipping item in 3D space */
.shipping-item.ship {
  top: 10%;
  left: 10%;
  transform: translateZ(20px) rotateY(10deg);
  animation: floatShip 8s ease-in-out infinite;
}

.shipping-item.truck {
  top: 60%;
  left: 20%;
  transform: translateZ(40px) rotateY(-5deg);
  animation: floatTruck 7s ease-in-out infinite 1s;
}

.shipping-item.warehouse {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(60px);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1ABC9C, #16a085);
  color: white;
  z-index: 3;
}

.shipping-item.warehouse .icon {
  color: white;
  font-size: 2.5rem;
}

.shipping-item.warehouse .label {
  color: white;
  font-weight: 700;
}

.shipping-item.plane {
  top: 20%;
  right: 15%;
  transform: translateZ(30px) rotateY(-10deg);
  animation: floatPlane 9s ease-in-out infinite 0.5s;
}

.shipping-item.box {
  bottom: 10%;
  right: 10%;
  transform: translateZ(10px) rotateY(5deg);
  animation: floatBox 6.5s ease-in-out infinite 0.3s;
}

/* Connection line */
.connection-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, #1ABC9C 0%, transparent 70%),
    linear-gradient(135deg, rgba(26, 188, 156, 0.3) 0%, rgba(16, 160, 133, 0.1) 100%);
  border-radius: 50%;
  margin: 20%;
  filter: blur(1px);
  z-index: 1;
}

/* Floating animations */
@keyframes floatShip {
  0%, 100% { transform: translateZ(20px) rotateY(10deg) translateY(0); }
  50% { transform: translateZ(20px) rotateY(10deg) translateY(-10px); }
}

@keyframes floatTruck {
  0%, 100% { transform: translateZ(40px) rotateY(-5deg) translateY(0); }
  50% { transform: translateZ(40px) rotateY(-5deg) translateY(-15px); }
}

@keyframes floatPlane {
  0%, 100% { transform: translateZ(30px) rotateY(-10deg) translateY(0) rotate(0deg); }
  50% { transform: translateZ(30px) rotateY(-10deg) translateY(-20px) rotate(5deg); }
}

@keyframes floatBox {
  0%, 100% { transform: translateZ(10px) rotateY(5deg) translateY(0); }
  50% { transform: translateZ(10px) rotateY(5deg) translateY(-8px); }
}

/* Hover effects */
.shipping-item:hover {
  transform: translateZ(80px) scale(1.1) !important;
  box-shadow: 0 15px 40px rgba(26, 188, 156, 0.3);
  z-index: 10;
}

.shipping-item:hover .icon {
  transform: scale(1.2);
  color: #0A2A5A;
}

.shipping-item.warehouse:hover .icon {
  color: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visualization {
    min-height: 300px;
    margin-top: 2rem;
  }
  
  .shipping-item {
    width: 80px;
    height: 80px;
  }
  
  .shipping-item .icon {
    font-size: 1.5rem;
  }
  
  .shipping-item .label {
    font-size: 0.7rem;
  }
  
  .shipping-item.warehouse {
    width: 100px;
    height: 100px;
  }
  
  .shipping-item.warehouse .icon {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-visualization {
    min-height: 250px;
  }
  
  .shipping-item {
    width: 60px;
    height: 60px;
  }
  
  .shipping-item .icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  
  .shipping-item .label {
    font-size: 0.6rem;
  }
  
  .shipping-item.warehouse {
    width: 80px;
    height: 80px;
  }
  
  .shipping-item.warehouse .icon {
    font-size: 1.8rem;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #0A2A5A;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  color: #4a4a4a;
  margin-bottom: 28px;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ================= BUTTONS ================= */
/* Premium Buttons - Elegant and Refined */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: #0A2A5A;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 42, 90, 0.15);
  min-width: 160px;
  letter-spacing: 0.3px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Primary Button */
.btn-primary {
  background: #0A2A5A;
  color: white;
}

.btn-primary:hover {
  background: #1a3d7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 42, 90, 0.25);
}

/* Accent Button */
.btn-accent {
  background: #1ABC9C;
  color: white;
}

.btn-accent:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 188, 156, 0.25);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 1.5px solid #0A2A5A;
  color: #0A2A5A;
  box-shadow: none;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(10, 42, 90, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 42, 90, 0.1);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* Button Sizes */
.btn-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  min-width: 120px;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* Button with Icon */
.btn i {
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Disabled State */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Button Group */
.btn-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Subtle Hover Effect */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover::after {
  opacity: 1;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
  color: white !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn i {
  font-size: 1.2em;
  margin-right: 5px;
}

/* ================= FORM BUTTONS ================= */
button[type="submit"],
input[type="submit"],
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: #0A2A5A;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 42, 90, 0.15);
  width: auto;
  margin: 0;
  letter-spacing: 0.3px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.btn-submit:hover {
  background: #1a3d7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 42, 90, 0.25);
}

button[type="submit"]:active,
input[type="submit"]:active,
.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 42, 90, 0.2);
}

/* Newsletter Form Buttons */
.newsletter-form button[type="submit"],
.newsletter-form input[type="submit"] {
  background: #1ABC9C;
  color: white;
  min-width: 140px;
  margin-left: 10px;
}

.newsletter-form button[type="submit"]:hover,
.newsletter-form input[type="submit"]:hover {
  background: #16a085;
  box-shadow: 0 6px 18px rgba(26, 188, 156, 0.3);
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Full Width Button */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Button with Icon */
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-with-icon::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-with-icon:hover::after {
  transform: translateX(5px);
}

/* Premium Form Styles */
form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

form:hover {
  box-shadow: 0 15px 50px rgba(0, 128, 128, 0.1);
  transform: translateY(-2px);
}

/* ================= PREMIUM FORM ELEMENTS ================= */
.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #0A2A5A;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #fff;
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(10, 42, 90, 0.05);
}

textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* Focus states */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #1ABC9C;
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
  transform: translateY(-1px);
}

/* ================= FORM VALIDATION ================= */
/* Error States */
.was-validated .form-control:invalid,
.form-control.error,
.was-validated .form-select:invalid,
.form-select.error {
  border-color: #ff6b6b;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.2rem;
  background-color: #fff8f8;
}

.was-validated .form-control:invalid:focus,
.form-control.error:focus,
.was-validated .form-select:invalid:focus,
.form-select.error:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Valid States */
.was-validated .form-control:valid,
.form-control.valid,
.was-validated .form-select:valid,
.form-select.valid {
  border-color: #1ABC9C;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231ABC9C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.2rem;
  background-color: #f8fffc;
}

/* Error Messages */
.error-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #ff6b6b;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}

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

/* Form Group with Error */
.form-group.has-error {
  margin-bottom: 1.5rem;
}

/* Focus state for invalid fields */
.form-control:focus.error,
.form-select:focus.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Disable HTML5 validation message bubble */
input:invalid,
textarea:invalid,
select:invalid {
  box-shadow: none;
}

input:invalid:focus,
textarea:invalid:focus,
select:invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

input:valid,
textarea:valid {
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231ABC9C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.2rem;
}

/* Form Help Text */
.form-help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6c757d;
}

/* Form Group with Icons */
.form-group.icon-group {
  position: relative;
}

.form-group.icon-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  transition: color 0.3s ease;
}

.form-group.icon-group input,
.form-group.icon-group select,
.form-group.icon-group textarea {
  padding-left: 3rem;
}

.form-group.icon-group:focus-within i {
  color: #1ABC9C;
}

/* Floating Labels */
.floating-label {
  position: relative;
  margin-bottom: 1.5rem;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.floating-label label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #6c757d;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
  z-index: 1;
  background: white;
  padding: 0 0.5rem;
  margin-left: -0.5rem;
  border-radius: 4px;
}

.floating-label input:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #1ABC9C;
  font-weight: 600;
}

/* Form Loading State */
.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.form-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Success Message */
.form-success {
  display: none;
  padding: 20px;
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
  border-radius: 4px;
  margin-bottom: 20px;
  color: #2e7d32;
  font-weight: 500;
}

/* Form Error Message */
.form-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  font-weight: 400;
}

/* Floating Labels */
.floating-label {
  position: relative;
  margin-bottom: 24px;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
  padding: 20px 20px 10px;
}

.floating-label label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #888;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 5px;
  transform-origin: left top;
}

.floating-label input:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-10px) scale(0.85);
  color: #1ABC9C;
  background: #fff;
  padding: 0 8px;
  left: 12px;
  font-weight: 500;
}

/* Custom Checkbox and Radio */
.checkbox-group,
.radio-group {
  margin: 15px 0;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
  width: auto;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* File Input */
.file-upload {
  position: relative;
  margin-bottom: 20px;
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8fafc;
  border: 2px dashed #e0e6ed;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: #e0e6ed;
  background: #f8fcfb;
}

.file-upload-text {
  color: #666;
  font-size: 0.95rem;
}

.file-upload-button {
  background: #e9ecef;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.2s ease;
}

.file-upload-label:hover .file-upload-button {
  background: #dee2e6;
}

/* Form Help Text */
.help-text {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Form Section */
.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f4f8;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f4f8;
}

/* Form Grid */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.form-col {
  flex: 1;
  min-width: 0;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Responsive Form */
@media (max-width: 768px) {
  form {
    padding: 20px 15px;
    margin: 0 10px;
    width: calc(100% - 20px);
  }
  
  form input,
  form textarea,
  form select {
    font-size: 15px;
    padding: 10px 12px;
  }
  
  form button[type="submit"] {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    margin: 0;
  }
  
  .form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ================= SECTIONS ================= */
.section {
  margin-top: 90px;
}

.section h2 {
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  text-align: center;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0.5rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #00ccff);
  border-radius: 3px;
}

/* ================= SERVICES ================= */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle at 30% 50%, rgba(26, 188, 156, 0.05) 0%, rgba(10, 42, 90, 0) 50%);
  z-index: -1;
  border-radius: 30px;
  margin: 60px 0;
}

.service {
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  padding: 50px 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(10, 42, 90, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1ABC9C, #0A2A5A);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(10, 42, 90, 0.15);
}

.service:hover::before {
  opacity: 1;
}

.service h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #0A2A5A;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.service h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1ABC9C, #0A2A5A);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.service:hover h3::after {
  width: 80px;
  background: #1ABC9C;
}

/* Service Icons */
.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(10, 42, 90, 0.05) 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #1ABC9C;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 188, 156, 0.1);
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  z-index: 0;
  opacity: 0.8;
}

.service-icon i {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service:hover .service-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #1ABC9C, #16a085);
  color: white;
  box-shadow: 0 10px 25px rgba(26, 188, 156, 0.3);
}

.service p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.service .btn {
  margin-top: 15px;
}

/* About Section */
.about {
  background: #008080; /* Teal */
  color: #fff;
  padding: 80px 60px;
  border-radius: 16px;
  margin: 80px 0;
  text-align: center;
}

.about h2 {
  color: white;
  margin-bottom: 25px;
  font-size: 2.2rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.faq {
  max-width: 700px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  color: #111; /* default text color */
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  background-color: #f5f5f5; /* visible background */
  color: #111; /* FIX */
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.faq-question:hover {
  background-color: #eaeaea;
}

/* Removed duplicate .faq-answer styles that were causing conflicts */

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9f9f9;
    position: relative;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #008080;
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question .faq-toggle {
    font-size: 1.2rem;
    color: #008080;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item.active .faq-question .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fcfcfc;
    padding: 0 2rem;
}

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

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #4d4d4d;
}

.faq-answer a {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #006666;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, #0A2A5A 0%, #006666 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 100px 0 40px;
  position: relative;
  font-size: 0.95rem;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuLWJnIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuLWJnKSIvPjwvc3ZnPg==');
  opacity: 0.6;
  z-index: 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #1ABC9C;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #1ABC9C;
  text-decoration: none;
}

.footer-links a:hover::after {
  width: 100%;
}

footer h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #1ABC9C;
  border-radius: 2px;
}

footer p {
  margin-bottom: 15px;
  line-height: 1.7;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Footer contact links specific styles */
.footer-contact a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 5px;
}

.footer-contact a:hover {
  color: #1ABC9C;
  text-decoration: none;
  transform: translateY(-1px);
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-social .newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  position: relative;
}

.footer-social .social-links {
  display: flex;
  gap: 12px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.footer-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-links a:hover {
  background: rgba(26, 188, 156, 0.2);
  transform: translateY(-3px) scale(1.05);
  text-decoration: none;
  color: #1ABC9C;
  border-color: rgba(26, 188, 156, 0.5);
  box-shadow: 0 5px 15px rgba(26, 188, 156, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .footer-bottom {
    margin-top: 50px;
  }
  
  .footer-links {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    padding: 8px 0;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .btn-small {
    width: 100%;
    margin-top: 10px;
  }
}

/* About Section */
.about-section {
    background: #f9f9f9;
    padding: 5rem 0;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #008080;
    border-radius: 2px;
}

.about-text {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #4d4d4d;
    text-align: left;
    font-size: 1.1rem;
}

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

.about-content-short p:first-child {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
}

footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Navbar scroll effect */
.nav-scrolled {
  padding: 10px 5% !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Form Styles */
form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button[type="submit"] {
  background: #008080;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  width: 100%;
}

form button[type="submit"]:hover {
  background: #006666;
}

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

/* Contact and Shipping Page Styles */
.contact-container,
.shipping-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  background: #f0f9f9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008080;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h3 {
  margin: 0 0 10px 0;
  color: #1a1a1a;
  font-size: 1.2rem;
}

.contact-details p,
.contact-details a {
  margin: 5px 0;
  color: #555;
  line-height: 1.6;
}

.contact-details a {
  color: #008080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #006666;
  text-decoration: underline;
}

.contact-form-container,
.shipping-form {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-container h3,
.shipping-form h3 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #1a1a1a;
  font-size: 1.5rem;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #008080;
  box-shadow: 0 0 0 2px rgba(0, 128, 128, 0.1);
}

.form-actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.or-divider {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
}

@media (max-width: 480px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .or-divider {
    text-align: center;
    margin: 0.5rem 0;
  }
}

.privacy-notice {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.privacy-notice a {
  color: #008080;
  text-decoration: none;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    padding: 20px 15px;
  }
  
  .contact-container,
  .shipping-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .services {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about {
    padding: 50px 20px;
    margin: 50px 0;
  }
  
  .about h2 {
    font-size: 1.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .footer-bottom {
    margin-top: 40px;
  }
  .nav-toggle {
    display: block;
    color: #2e7d32;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #fff;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  nav ul.show {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 35px;
  }

  .container {
    padding: 50px 16px;
  }

  form {
    padding: 30px;
  }
  
  }
  #backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  display: none; /* hidden by default */
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: white;
}

#backToTop:hover {
  background-color: #555;
}