/* Reset */
@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body with gradient background for wave animation */
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(rgba(255,254,234,1) 0%, rgba(255,254,234,1) 35%, #B7E8EB 100%);
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  height: 100%;
}

html, body { 
  height: 100%; 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(44, 140, 156) !important;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-image {
  height: 105px;
  width: auto;
  max-width: 400px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  color:white;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000000;
}

.nav-link-contact {
  background: #f3f4f6;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #000000;
  border: 1px solid #d1d5db;
}

.nav-link-contact:hover {
  background: #e5e7eb;
}

/* Hero Section with Wave Animation */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
}

.hero-container {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  margin-top: 5rem;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #2c8c9c 0%, #35d3cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #21130d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.icon-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: rgb(44, 140, 156) !important;
  color: white;
}

.btn-primary:hover {
  background: rgb(44, 130, 140) !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: rgba(243, 244, 246, 0.8);
  border-color: #9ca3af;
}

.hero-payment {
  display: flex;
  justify-content: center;
}

.payment-info {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 400px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.payment-info span {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.payment-info div {
  flex: 1;
}

.payment-info strong {
  color: #000000;
  font-weight: 600;
}

.payment-info span {
  color: #000000;
  font-size: 0.9rem;
}

/* Wave Animation Styles */
.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
  z-index: 1;
}

.wave {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x;
  position: absolute;
  width: 6400px;
  top: -198px;
  left: 0;
  height: 198px;
  transform: translate(0, 0, 0);
  animation: wave 7s ease infinite;
}

.wave:nth-of-type(2) {
  top: -168px;
  animation: swell 4s ease infinite;
  opacity: 1;
}

@keyframes wave {
  0% { margin-left: 0; }
  100% { margin-left: -1600px;}
}

@keyframes swell {
  0%, 100% {
    transform: translate(0, -30px);
  }
  50% {
    transform: translate(0, 5px);
  }
}



/* Section Styles */
.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
  border: 1px solid rgba(209, 227, 255, 0.8);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: transparent;
  width: 100%;
  text-align: center;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
}

.service-card > p {
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: #000000;
  font-size: 0.95rem;
}

.service-link {
  color: rgb(44, 140, 156) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #2563eb;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: transparent;
  width: 100%;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-text p {
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.why-choose {
  margin-top: 2rem;
}

.why-choose h3 {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.why-list {
  list-style: none;
}

.why-list li {
  padding: 0.5rem 0;
  color: #000000;
  text-align:left;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #000000;
  font-size: 0.9rem;
}

.technologies {
  text-align: center;
}

.technologies h3 {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tech-tag {
  background: rgba(243, 244, 246, 0.8);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: transparent;
  width: 100%;
  text-align: center;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

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

.team-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.team-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #e5e7eb;
}

.team-status {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
}

.team-card h3 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #000000;
  margin-bottom: 0.5rem;
}

.team-experience {
  background: rgba(243, 244, 246, 0.8);
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
}

.team-description {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.team-skills h4 {
  color: #000000;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.skill-tag {
  background: rgba(243, 244, 246, 0.8);
  color: #000000;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid #e5e7eb;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: transparent;
  width: 100%;
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 12px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.contact-icon.phone {
  background: rgba(34, 197, 94, 0.2);
}

.contact-icon.email {
  background: rgba(59, 130, 246, 0.2);
}

.contact-icon.location {
  background: rgba(168, 85, 247, 0.2);
}

.contact-label {
  color: #000000;
  font-size: 0.9rem;
}

.contact-value {
  color: #000000;
  font-weight: 600;
}

.payment-plans {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background:rgb(44, 140, 156) !important;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.payment-title
{
	color:#ffffff;
}

.payment-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.payment-plans h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.payment-plans p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
}

.contact-form-container h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  color: #000000;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem;
  color: #000000;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000000;
}

.btn-full {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact Message Display */
.contact-message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #000000;
}

.contact-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Footer */
.footer {
  background: rgb(44, 140, 156) !important;
  border-top: 1px solid rgba(204, 224, 255, 0.5);
  padding: 3rem 0 1rem;
  color:#ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
 
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact div {
  
  font-size: 0.9rem;
}

.footer-column h4 {

  margin-bottom: 1rem;
  font-size: 1.1rem;
  
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
  color:#ffffff !important;
}

.footer-column ul li a {
 
  text-decoration: none;
  transition: color 0.3s ease;
  color: #ffffff;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-payment h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-payment p {
  color: #ffffff;
  font-size: 0.9rem;
}

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

.footer-copyright {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-status {
  color: #ffffff;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
	    margin-top: 5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-icons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-list {
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
	    margin-top: 5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .services-section,
  .about-section,
  .team-section,
  .contact-section {
    padding: 4rem 0;
  }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 2rem;
	
}

.language-btn {
    
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    cursor: pointer; 
background:none;	
   
}

.language-btn:hover {
    color: #000000;
   
}

.language-btn.active {
     
	 border-radius: 4px;
	 border: none;
	 text-decoration: underline;
}

.language-separator {
    color: #ffffff;
    margin: 0 0.5rem;
}

/* Responsive adjustments for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .language-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 1rem 0 0;
    }
}


/* Cost Estimator Section */
.cost-estimator-section {
  padding: 6rem 0;
  position: relative;
  background: transparent;
}

.estimator-container {
  max-width: 800px;
  margin: 0 auto;
}

.estimator-form {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.estimator-form h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.estimator-form .form-group label {
  color: #000000;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.estimator-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem;
  color: #000000;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

.estimator-form textarea:focus {
  outline: none;
  border-color: rgb(44, 140, 156);
  background: rgba(255, 255, 255, 0.95);
}

.estimator-form textarea::placeholder {
  color: #6b7280;
}

/* Estimator Result Card */
.estimator-result {
  margin-top: 2rem;
}

.estimator-result h3 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.estimate-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 227, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estimate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.estimate-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(209, 227, 255, 0.5);
}

.project-type {
  background: rgba(44, 140, 156, 0.1);
  color: rgb(44, 140, 156);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid rgba(44, 140, 156, 0.2);
}

.estimate-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  color: rgb(44, 140, 156);
  font-weight: 700;
}

.price-range {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
}

.estimate-details {
  margin-bottom: 2rem;
}

.estimate-section {
  margin-bottom: 1.5rem;
}

.estimate-section h4 {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.estimate-section h4:before {
  content: "📋";
  font-size: 1rem;
}

.estimate-section ul {
  list-style: none;
  padding: 0;
}

.estimate-section li {
  background: rgba(243, 244, 246, 0.8);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.estimate-section li:before {
  content: "✓";
  color: rgb(44, 140, 156);
  font-weight: bold;
  font-size: 1rem;
}

.estimate-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(209, 227, 255, 0.5);
}

.estimate-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.email-quote-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(243, 244, 246, 0.5);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.email-quote-section h4 {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.email-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.email-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.email-input-group input {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem;
  color: #000000;
  font-size: 0.95rem;
}

.email-input-group input:focus {
  outline: none;
  border-color: rgb(44, 140, 156);
  background: rgba(255, 255, 255, 0.95);
}

.email-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

.email-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.email-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.estimator-message {
  margin: 1rem 0;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

.estimator-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.estimator-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.estimator-message.loading {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #2563eb;
}

/* Responsive adjustments for cost estimator */
@media (max-width: 768px) {
  .estimate-range {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .price-range {
    font-size: 2rem;
  }
  
  .email-input-group {
    flex-direction: column;
  }
  
  .estimator-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .estimate-card {
    padding: 1.5rem;
  }
  
  .price-range {
    font-size: 1.75rem;
  }
  
  .currency {
    font-size: 1.25rem;
  }
}
