:root {
  --primary-color: #1a1a2e;
  --accent-color: #0f3460;
  --highlight-color: #e94560;
  --light-bg: #f5f7fa;
  --border-color: #e0e0e0;
  --text-main: #2a2a3e;
  --text-secondary: #5a5a6e;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition-speed: 0.35s;
}

/* Utility classes */

* {

  box-sizing: border-box;
          padding  :   0;
       margin: 0;




}

html, body {
    width: 100%;
  height  :      100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--white);
}

body {

         overflow-x: hidden;
}

/* Minified version */

.navbar-section		{


  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
	position: sticky;
   top: 0;
	z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar-wrapper
	{


  max-width: 1200px;

	   margin: 0 auto;

	  padding: 1rem 2rem;

	  display    :flex;

	   justify-content :     space-between;

	   align-items:     center;

}

.brand-container {
   display :flex;
  align-items: center;
}

.logo-img{


               height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
     }

.nav-menu {
    display: flex;
				 list-style: none;
     gap: 2rem;
    align-items: center;
}

.nav-menu a {
   text-decoration :none;
  color: var(--text-main);
		font-weight    :      500;
  transition: color var(--transition-speed) ease;
    position :        relative;
}

.nav-menu a::after {
	  content: '';
	position: absolute;
    bottom: -4px;
    left: 0;
   width:    0;
   height: 2px;
  background-color: var(--highlight-color);
  transition: width var(--transition-speed) ease;
}

.nav-menu a:hover::after {
   width: 100%;
	
}

.nav-menu a.cta-link {
  color: var(--highlight-color); 
	   font-weight: 600;
}



.menu-toggle {
  padding: 0.5rem;
   display: none;
  gap  :       6px;
  background: none;
  cursor: pointer;
  border: none;
    flex-direction: column;
}

.menu-toggle span {
     width: 24px;
  height     :    3px;
  background-color: var(--text-main);
	border-radius     :     2px;
  transition: all var(--transition-speed) ease;


}

/* Development only */
/* Utility classes */

.menu-toggle.active span:nth-child(1) {

  transform: rotate(45deg) translate(10px, 10px);


}

.menu-toggle.active span:nth-child(2)


{
  opacity: 0;
}

/* Layout styles */

.menu-toggle.active span:nth-child(3)    {


  transform: rotate(-45deg) translate(7px, -7px);

}

.hero-section {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
	 padding: 6rem 2rem;
    text-align     :      center;
    min-height: 500px;
  display: flex;
    align-items: center;
  justify-content: center;
}

/* Responsive design */

.hero-content 
 {
                    max-width: 700px;
	margin: 0 auto;
}

.hero-content h1     {
   letter-spacing :-0.5px;
    font-size: 3rem;
    font-weight     :  700;
  margin-bottom: 1.5rem;
	line-height   :       1.2;
}
	/* Browser compatibility */
.hero-content p {
  font-size :  1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.5;


}  

.button-primary {
  display: inline-block; 
  background-color: var(--highlight-color); 
  color: var(--white); 
  padding: 14px 32px; 
    text-decoration: none; 
   border-radius: 6px; 
         font-weight: 600; 
  transition: all var(--transition-speed) ease; 
  border: 2px solid var(--highlight-color); 
  cursor: pointer; 
  font-size: 1rem;
}

.button-primary:hover {
   background-color: transparent;
  color: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}
	/* Component styles */
	/* Custom modifications */


.intro-section {
	padding    :        4rem 2rem;
  background-color: var(--light-bg);
}

.intro-wrapper {
      max-width: 1200px;
  margin     :      0 auto;
}

.intro-wrapper h2 {
   font-size: 2.2rem;
  margin-bottom :   3rem;
        text-align: center;
  color: var(--primary-color);
    font-weight    :700;
}
/* Debug styles */


/* Production ready */


.intro-grid		{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
} 

.intro-card {
  background: var(--white);
   padding: 2rem;
    border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
  border-left: 4px solid var(--highlight-color);
}

.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.intro-card h3 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 600;
}

.intro-card p

{
  color: var(--text-secondary);

   line-height   :   1.7;

                    font-size     :       0.95rem;
}
/* Generated styles */

/* Build system output */
/* Development only */

.services-showcase {
    padding: 5rem 2rem;
  background-color: var(--white);
}
	/* Debug styles */


	/* Temporary fix */


.services-wrapper {
      max-width: 1200px;
    margin: 0 auto;
	}

.services-wrapper h2 {
    font-size: 2.2rem;
   text-align: center;
    margin-bottom     :      3rem;
  color: var(--primary-color);
         font-weight: 700;
}
/* Third-party styles */

.services-grid {
   display :grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 2rem;
}



.service-card {
  background: var(--white);
	 border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
   display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--highlight-color);
}

.service-image-wrapper {
   width: 100%;
   height: 200px;
    overflow: hidden;
  background-color: var(--light-bg);
}

.service-image {
   width: 100%;
  height     :   100%;
    object-fit: cover;
  transition: transform var(--transition-speed) ease;
}
/* Temporary fix */


	/* Third-party styles */

/* Cross-browser fix */

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-card h3 {

	    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
  color: var(--accent-color);
	 font-weight: 600;


}

.service-card p {
  padding: 0.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.experience-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--white);
   padding: 4rem 2rem; 

}

.experience-wrapper {
    max-width: 1200px;
    margin: 0 auto;
               text-align     :   center;
}

.experience-wrapper h2 {
   font-size    : 2.2rem;
  margin-bottom: 3rem;
    font-weight: 700;
}

.experience-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.experience-item {
	padding: 2rem;

}

.exp-number    {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom:  0.5rem;
  color: var(--highlight-color);
}



.experience-item p

{
   font-size: 1rem;
    line-height: 1.5;
               opacity: 0.9;


}
	/* Generated styles */
.cta-booking {
  background-color: var(--light-bg);
    padding: 3rem 2rem;
   text-align: center;
}
	/* Cross-browser fix */
/* Utility classes */

.cta-wrapper {
  max-width     :       700px;
          margin: 0 auto;
	}
/* Performance critical */


.cta-wrapper h2
{
   font-size: 2rem;
   margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;

}

.cta-wrapper p {
	 font-size :      1.1rem;
  color: var(--text-secondary);
    margin-bottom:   2rem;
  line-height:  1.6;
}

.contact-section {
   padding: 4rem 2rem;
  background-color: var(--white);
}

/* Browser compatibility */

.contact-wrapper {
               max-width: 1000px; 
   margin  :      0 auto;
}

.contact-section h2 {
       font-size: 2.2rem;
  text-align: center;
       margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 700;


}

.contact-content {
  display: grid;
	 grid-template-columns: 1fr 1fr;
	gap: 3rem;
               align-items: start;
}

.contact-form


{
        display: flex;
  flex-direction: column;
   gap   :       1.5rem;
}

.form-group {
   display: flex;
   flex-direction: column;
	
}

.form-group label {
   font-weight: 600; 
	    margin-bottom: 0.5rem; 
	  color: var(--text-main); 
	 font-size: 0.95rem;

}

.form-group input,
.form-group textarea,
.form-group select {
	    padding: 12px;
  border: 1px solid var(--border-color);
     border-radius: 6px;
   font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
  color: var(--text-main);
  background-color: var(--white); 
	
	}
	/* Hack for old browsers */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;

  border-color: var(--highlight-color);

  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.button-submit {
  background-color: var(--highlight-color);
  color: var(--white);
  padding: 14px 24px;
  border: none;
    border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
   cursor    :  pointer;
  transition: all var(--transition-speed) ease;
  margin-top: 0.5rem;
}



.button-submit:hover {
      background-color: #d63548;

	  transform: translateY(-2px);

	  box-shadow: 0 6px 16px rgba(233, 69, 96, 0.3);}

.contact-info{
     background-color: var(--light-bg);
  padding:    2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);}
	/* Vendor-specific */


.contact-info h3  
  {
     font-size     :       1.3rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
	font-weight: 600;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block p

{
   margin   :   0.3rem 0;
  color: var(--text-secondary);
   font-size: 0.95rem;
    line-height :   1.6;

}

.info-block p strong {
  color: var(--text-main);
}

.footer-section {
  background-color: var(--primary-color);
  color: var(--white);
    padding: 3rem 2rem;
}

.footer-wrapper {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap  : 2rem;
   margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand{
  display: flex;
    align-items: flex-start;
}

.footer-logo {
	height: 36px;
	  width: auto;
	  filter: brightness(0) invert(1);
}


.footer-nav ul {
    list-style: none;
  display: flex;
	flex-direction: column;
	gap: 0.8rem;
}



.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration:     none;
  transition: color var(--transition-speed) ease;
    font-size: 0.95rem;
	
}

.footer-nav a:hover{

	  color: var(--highlight-color);}

.footer-contact p {
                    margin-bottom :        1rem;
	  font-size: 0.9rem;
	    line-height: 1.6;
	  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {


   text-align: center;
  color: rgba(255, 255, 255, 0.6);
   font-size: 0.85rem;
    max-width: 1200px;
  margin: 0 auto; 
	
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border-color);
    padding: 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-section {
    padding: 4rem 2rem;
    min-height: auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .experience-content {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro-wrapper h2,
  .services-wrapper h2,
  .contact-section h2,
  .experience-wrapper h2,
  .cta-wrapper h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .navbar-wrapper {
    padding: 0.8rem 1rem;
  }

  .logo-img {
    height: 32px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .button-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .intro-section,
  .services-showcase,
  .contact-section {
    padding: 2.5rem 1rem;
  }

  .intro-wrapper h2,
  .services-wrapper h2,
  .contact-section h2,
  .cta-wrapper h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .footer-section {
    padding: 2rem 1rem;
  }
}.policySection {
   padding: 80px 2rem;
	  background: var(--light-bg);
}

.policyContainer {
	max-width: 800px;
  margin: 0 auto;
    text-align: left;
}

.policyContainer h1 {
	 font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
      font-weight: 700;
	 text-align: center;
}

.policyContainer h2 {
   font-size  :     2rem;
	  color: var(--accent-color);
	   margin: 2.5rem 0 1.5rem;
		 font-weight: 600;
	  border-bottom: 2px solid var(--border-color);
	       padding-bottom: 0.5rem; 
	
}

.policyContainer h3 {

                    font-size: 1.4rem;
  color: var(--text-main);
  margin: 2rem 0 1rem;
 font-weight    :   600;


}

.policyContainer p {

	  color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height:  1.7;
	font-size: 1.1rem;
	}

.policyContainer ul,
.policyContainer ol {
  margin: 1rem 0 1.5rem 2rem;
  color: var(--text-secondary);
}

.policyContainer li {
	margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policyContainer strong {
  color: var(--text-main);
}@media (max-width: 768px) {
  .policyContainer h1 {
    font-size: 2.2rem;
  }

  .policyContainer h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
  }

  .policyContainer h3 {
    font-size: 1.2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}

@media (max-width: 480px) {
  .policySection {
    padding: 40px 1rem;
  }

  .policyContainer h1 {
    font-size: 1.8rem;
  }

  .policyContainer p {
    font-size: 0.95rem;
  }
}.services-hero
	{
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: white;
			padding: 5rem 2rem;
        text-align: center;
    min-height: 400px;
   display: flex;
   align-items: center;
  justify-content     :  center;
}

.services-hero .hero-content h1 {
    font-size: 2.8rem;
   margin-bottom: 1rem;
   font-weight: 700;
    letter-spacing: -0.5px;
}

.services-hero .hero-content p {
	font-size: 1.2rem;
		 opacity: 0.95;
    line-height: 1.6;
}

.services-detail-section {
    padding: 5rem 2rem;
   background-color: #f5f7fa;
}

.services-detail-wrapper {
	max-width: 1100px;
   margin: 0 auto;
}

.service-detail-item {

		display: grid;
	 grid-template-columns: 1fr 1fr;
    gap: 3rem;
   margin-bottom: 4rem;
    align-items: center;
   background: white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.35s ease;}

.service-detail-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-detail-reverse {
         direction: rtl;
}

.service-detail-reverse > div {
  direction: ltr;
}

.service-detail-image {
  width: 100%;
    height: 300px;
   border-radius: 10px;
   overflow: hidden;
   background    :#f0f0f0;
	}

.detail-img {
    transition: transform 0.35s ease;
  height: 100%;
  width: 100%;
   object-fit: cover;
}

.service-detail-item:hover .detail-img 
 {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-size: 1.8rem;
   color: #0f3460;
    margin-bottom: 1rem;
	 font-weight: 700;
}

.service-detail-content p {
    line-height: 1.7;
   color: #5a5a6e;
   font-size: 0.95rem;
   margin-bottom: 1.2rem;
}

.service-features {

   list-style :   none;
   margin: 1.5rem 0;
    padding: 0;
     }


.service-features li    {
	 padding: 0.6rem 0 0.6rem 2rem;
    color: #5a5a6e;
    position: relative;
   font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li::before
{
     content: '✓';
	 position: absolute;
   left: 0;
    color    :     #e94560;
    font-weight: 700;
  font-size: 1.1rem;

}

.pricing-section  {
   padding:    5rem 2rem;
   background: white;
}

.pricing-wrapper {
    max-width: 1200px;
               margin: 0 auto;
}

.pricing-wrapper h2	{
    font-size  :    2.2rem;
   text-align: center;
   margin-bottom: 0.5rem;
    color: #1a1a2e;
      font-weight: 700;
}

.pricing-subtitle {


                    text-align: center;
         font-size: 1.05rem;
    margin-bottom: 3rem;
   color: #5a5a6e; 



}

.pricing-grid     {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 2rem;
   margin-top: 2rem;
     }

.pricing-card {
  background: #f5f7fa;
  border-radius  :     10px;
    padding :2.5rem;
   text-align: center;
   transition: all 0.35s ease;
    border: 2px solid #e0e0e0;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color    :     #e94560;
}

.pricing-card.featured {
        border-color: #e94560;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(15, 52, 96, 0.05) 100%);
  transform: scale(1.05);
}

.featured-badge {
   position: absolute;

  top: -12px;

  left: 50%;

  transform: translateX(-50%);

   background: #e94560;

  color: white;

  padding: 0.5rem 1rem;

                    border-radius: 20px;

   font-size: 0.8rem;

   font-weight: 600; 

}

.pricing-card h3 {
               font-size: 1.3rem;

	 color:      #0f3460;

  margin-bottom: 0.8rem;

  font-weight: 700;
}

.price {
    font-size    : 2rem;
    color: #e94560;
  margin-bottom :1.5rem;
   font-weight: 700;
}

.pricing-features


{
    list-style : none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #5a5a6e;
    font-size: 0.9rem;
}

.pricing-features li:last-child {
   border-bottom: none;
}

.pricing-button {
    display     : inline-block;
  margin-top    :      2rem;
  padding     :   12px 28px;
   border-radius   :    6px;
   text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
     transition: all 0.35s ease;
   background-color: #e0e0e0;
	 color     : #1a1a2e;
   border: 2px solid #e0e0e0;
    cursor: pointer;
}

.pricing-button:hover {
          background-color     :       transparent;
    color: #0f3460;
}

.pricing-button.btn-accent {
     background-color   :     #e94560;
    color: white;
      border-color: #e94560;
}

.pricing-button.btn-accent:hover {
   background-color: transparent;
	color: #e94560;
}

.process-section {
  padding: 5rem 2rem;
  background: #f5f7fa;
     }

.process-wrapper {

   max-width: 1100px;
	    margin: 0 auto;
	}

.process-wrapper h2 {
   font-size: 2.2rem;
	text-align: center;
        margin-bottom: 3rem;
   color: #1a1a2e;
  font-weight: 700;
}

.process-timeline {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.process-step		{
   background    :       white;
                    padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition: all 0.35s ease;
	 position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: white;
   border-radius: 50%;
  display: flex;
   align-items: center;
					justify-content: center;
  font-size: 1.8rem;
    font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size  :       1.2rem;
          color: #0f3460;
	margin-bottom: 0.8rem;
     font-weight: 600;
}

.process-step p

{
  color :    #5a5a6e;
  font-size: 0.95rem;
    line-height: 1.6;
} 

.cta-final		{
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
 color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-final-wrapper {
     max-width: 700px;
   margin: 0 auto;
}

.cta-final-wrapper h2 {
    font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-final-wrapper p {
    font-size:     1.05rem;
  margin-bottom: 2rem;
    opacity: 0.95;
   line-height: 1.6;
}

.thankyou-container {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #eef0f5 100%);
  min-height: calc(100vh - 300px);
  display   :        flex;
    align-items    :        center;
  justify-content    :        center;
}

.thankyou-wrapper	{
    max-width: 600px;
    background: white;
  border-radius: 12px;
   padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.success-icon {
   margin-bottom    :    2rem;
    display   :flex;
   justify-content: center;
}

.success-icon img {
	width: 80px;
    height: 80px;
  filter: drop-shadow(0 4px 8px rgba(233, 69, 96, 0.2));
    stroke: #e94560;
  fill: #e94560;
}

.thankyou-wrapper h1 {
    font-size: 2rem;
    color: #0f3460;
  margin-bottom: 1rem;
   font-weight: 700;
}

.greeting {
	  font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
   font-weight: 600;
}

.confirmation-details {
  background: #f5f7fa;

    border-radius: 8px;

  padding: 2rem;

   margin: 2rem 0;

               text-align: left;
}

.confirmation-details p {
	 margin-bottom: 1.5rem;
	color: #5a5a6e;
   line-height: 1.6;
} 

.details-box
{
    display  : flex;
    flex-direction: column;
  gap: 1rem;
}

.detail-row {
    display: grid;
  grid-template-columns: 150px 1fr;
                    gap    :  1rem;
    align-items: center;
     }

.detail-label {
       font-weight  :   600;
    color: #0f3460;


}

.detail-value {
	 word-break     :    break-word;
	 color: #5a5a6e;


}

.next-steps {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    border-left: 4px solid #e94560;
   border-radius: 8px;
   padding    : 2rem;
  margin: 2rem 0;
  text-align: left;
}

.next-steps h2 {
 font-size: 1.3rem;

	  color: #0f3460;

	    margin-bottom: 1rem;

	  font-weight: 700;
}  

.steps-list


{
    list-style: decimal;
  margin-left: 2rem;
  color: #5a5a6e;
}

.steps-list li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-box

{
	 background   :     #f5f7fa;
  border-radius: 8px;
   padding: 1.5rem;
         margin: 2rem 0;
}

.info-box h3 {
    font-size :1.1rem;
    color: #0f3460;
   margin-bottom  : 0.8rem;
   font-weight: 600;
}

.info-box p {
    color: #5a5a6e;

   margin-bottom: 1rem;

    font-size: 0.95rem;

    line-height: 1.6;
}

.contact-info-inline {

	  background: white;
    border-radius:  6px;
   padding: 1rem;
  margin-top: 1rem;
	}

.contact-info-inline p {
    margin-bottom: 0.5rem;
   color     :#1a1a2e;
}

.contact-info-inline p strong {
	color: #0f3460;
}

.actions-footer {
   display: flex;
  gap: 1rem;
   flex-wrap    :    wrap;
    justify-content: center;
    margin: 2.5rem 0;
}

.button-secondary {
   display   :    inline-block;
    background-color: #f5f7fa;
   color: #0f3460;
      padding  :  12px 28px;
  text-decoration: none;
    border-radius :     6px;
      font-weight:  600;
   transition  :all 0.35s ease;
    border: 2px solid #e0e0e0;
    cursor:        pointer;
          font-size:    0.95rem;
}


.button-secondary:hover {
         background-color: #e0e0e0;
  border-color: #0f3460;
  transform: translateY(-2px);
}

.confirmation-note {
   color: #5a5a6e;
    font-size: 0.9rem;
   margin-top: 1.5rem;
		 font-style: italic;


}@media (max-width: 768px) {
  .services-hero .hero-content h1 {
    font-size: 1.8rem;
  }

  .services-hero .hero-content p {
    font-size: 1rem;
  }

  .services-hero {
    padding: 3rem 2rem;
    min-height: auto;
  }

  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .service-detail-reverse {
    direction: ltr;
  }

  .service-detail-image {
    height: 250px;
  }

  .service-detail-content h2 {
    font-size: 1.4rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .thankyou-wrapper {
    padding: 2rem;
  }

  .detail-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .actions-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-hero .hero-content h1 {
    font-size: 1.4rem;
  }

  .services-hero .hero-content p {
    font-size: 0.9rem;
  }

  .services-detail-section {
    padding: 2.5rem 1rem;
  }

  .service-detail-item {
    padding: 1.5rem;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .service-detail-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .service-detail-content p {
    font-size: 0.9rem;
  }

  .pricing-section {
    padding: 2.5rem 1rem;
  }

  .pricing-wrapper h2 {
    font-size: 1.6rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .process-section {
    padding: 2.5rem 1rem;
  }

  .process-wrapper h2 {
    font-size: 1.6rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-final {
    padding: 2.5rem 1rem;
  }

  .cta-final-wrapper h2 {
    font-size: 1.6rem;
  }

  .thankyou-container {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .thankyou-wrapper {
    padding: 1.5rem;
  }

  .success-icon img {
    width: 60px;
    height: 60px;
  }

  .thankyou-wrapper h1 {
    font-size: 1.4rem;
  }

  .confirmation-details {
    padding: 1.5rem;
  }

  .next-steps {
    padding: 1.5rem;
  }

  .next-steps h2 {
    font-size: 1.1rem;
  }
}