* {
     margin: 0;
   padding :    0;
         box-sizing   :  border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  line-height: 1.6; 
   color: #2c3e50; 
   background  :     #fafafa;
}

.main-navigation   {
     background   :      #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	position: sticky;
    top: 0;
  z-index: 1000;
}

.nav-container {
	         max-width: 1280px;
  margin: 0 auto;
    padding: 1rem 2rem;
   display: flex;
    justify-content: space-between;
   align-items:   center;

}

.site-logo {
   height: 45px;
	   width: auto;
}

.mobile-trigger {
  display     : none;
	 cursor: pointer;
    flex-direction: column;
  background: none;
  padding: 8px;
  border:       none;
}

.mobile-trigger .bar {
	width: 28px;
  height: 3px;
   background: #2c3e50;
  margin: 4px 0;
         transition: 0.3s;
}

.nav-links {
      display: flex;
   gap: 2.5rem;


}

.nav-links a {
  color: #2c3e50;
    text-decoration: none;
    font-weight :    500;
   transition: color 0.3s;
	}

.nav-links a:hover {

	   color: #667eea;
}

.hero-area {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
	padding: 5rem 2rem;
}

.hero-content-wrapper {
         align-items  :      center;
    margin   :      0 auto;
  display: grid;
    gap: 4rem;
    max-width: 1280px;
    grid-template-columns: 1fr 1fr;
}

.text-content h1 {
     font-size: 3.2rem;
    color  :       #1a252f;
  margin-bottom: 1.5rem;
       line-height: 1.2;
}

.subtitle-text  
  {
  font-size: 1.15rem;

	    color: #5a6c7d;

	   margin-bottom: 2rem;
}

.primary-btn {

    display: inline-block;
  background    :  #667eea;
	color: #fff;
  padding :      14px 36px;
  text-decoration  :     none;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
} 

.primary-btn:hover {


    background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	}

.hero-visual img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.intro-block {
  padding  :        5rem 2rem;
		background: #fff;
}

.content-wrapper


{
   max-width: 1280px;
    margin     :       0 auto; 

}

.intro-block h2 {
  text-align     :  center;
	margin-bottom: 1.5rem;
    font-size: 2.5rem;
  color: #1a252f;


}

.intro-block p {
  font-size: 1.1rem;
      color: #5a6c7d;
      text-align: center;
      max-width: 900px;
   	margin: 0 auto 3rem;
}

.stats-display {
    display: flex;
	 justify-content: center;
	gap: 5rem;
  margin-top: 4rem; 

}

.stat-item {
	text-align  :      center;
}

.stat-number {
    display: block;
  font-size: 3rem;
   font-weight: 700;
   color :        #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
   font-size: 1rem;
    color: #5a6c7d;
    text-transform: uppercase;
   letter-spacing:    1px;
}

.approach-section {
    padding: 5rem 2rem;
           background: #f5f7fa;
}

.approach-grid  
  {
          gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
	display: grid;
  margin-top: 3rem;
}

.approach-card  
  {
	background  :     #fff;
    padding: 2.5rem;
         border-radius   :      12px;
  text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.approach-card:hover {


  transform: translateY(-8px);
     box-shadow: 0 12px 30px rgba(0,0,0,0.1);}

.approach-icon{
    width: 60px;
   height:     60px;
       margin-bottom: 1.5rem;
    stroke: #667eea;
  fill: none;
  stroke-width: 2;
}

.approach-card h3 {
  font-size: 1.5rem;
   color: #1a252f;
    margin-bottom: 1rem;
}

.approach-card p {
   color:      #5a6c7d;
  line-height   :    1.7;


}

.visual-showcase {
  padding  :     5rem 2rem;
  background: #fff;
}  

.showcase-container
{

	    max-width: 1280px;
        margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
          gap    :    2rem;}

.showcase-item    {


    position: relative; 
	   overflow: hidden; 
	       border-radius: 12px; 
	   cursor: pointer;

}

.showcase-item img	{
	-o-transition: transform 0.4s;
   width: 100%;
    -webkit-transition :     transform 0.4s;
    height    :      350px;
   object-fit: cover;
  transition: transform 0.4s;
  -moz-transition: transform 0.4s;
}

.showcase-item:hover img  
  {


  transform: scale(1.1);
     }

.showcase-overlay {
    position: absolute;
    bottom: 0;
   left: 0;
	right   :        0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
	 color: #fff;
}

.showcase-overlay h4 {
   font-size     :    1.3rem;
}

.services-preview {
    background: #f5f7fa;
   padding: 5rem 2rem;
}

.services-preview h2 {
  font-size: 2.5rem;
  color: #1a252f;
   text-align: center;
	margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2.5rem;
    margin-bottom   :   3rem;
}

.service-box {
  background: #fff;
                    padding:   2.5rem;
   border-radius: 12px;
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-icon {
  width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    stroke: #667eea;
    fill: none;
  stroke-width: 2;
}

.service-box h3 {
   font-size: 1.4rem;
    color    :     #1a252f;
   margin-bottom: 1rem;
	
}

.service-box p {
  color: #5a6c7d; 
	   line-height: 1.7;
}

.cta-center {

	    text-align: center;


}

.secondary-btn  {
 display: inline-block;
				 background: transparent;
   color: #667eea;
  padding: 14px 36px;
    text-decoration :    none;
  border: 2px solid #667eea;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.secondary-btn:hover {
    color    :#fff; 
	   background: #667eea;
}

.cta-block {
    background-size: cover;

	  background-position: center;

	  position: relative;

	   min-height: 450px;
}

.cta-overlay {
  background: rgba(26, 37, 47, 0.85);
   min-height   :      450px;
     display: flex;
	 align-items: center;
   justify-content: center;
    padding: 2rem;}

.cta-content {

	  text-align: center;
   color    :    #fff;
    max-width     :    700px;
	}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
	
}

.cta-content p {
               font-size: 1.2rem;
   margin-bottom: 2rem;
      opacity: 0.95;
}

.cta-button {
    display: inline-block; 
    background: #667eea; 
 color: #fff; 
  padding: 16px 42px; 
    text-decoration: none; 
   border-radius: 8px; 
   font-weight: 600; 
   font-size: 1.1rem; 
    transition: all 0.3s;
}

.cta-button:hover {
    background: #5568d3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4); 

}

.process-section {


    padding: 5rem 2rem;
      background: #fff;


}

.process-section h2 {


  font-size :  2.5rem;
       color: #1a252f;
    text-align   :     center;
   margin-bottom: 4rem;

}

.process-timeline

{
      display: grid;
  grid-template-columns: repeat(4, 1fr);
               gap: 2rem;
    max-width: 1280px;
  margin: 0 auto;
} 

.timeline-item {
    text-align: center;
   padding: 2rem;
}

.timeline-number {
  -moz-border-radius: 50%;
     margin: 0 auto 1.5rem;
      display:  flex;
       -webkit-border-radius     :   50%;
      height: 70px;
      border-radius:        50%;
      background: #667eea;
   	justify-content: center;
     align-items: center;
     font-weight: 700;
       font-size: 1.8rem;
       width :   70px;
       color    :    #fff;
}

.timeline-item h3 
 {
         font-size: 1.3rem;
  color     :     #1a252f;
	margin-bottom: 1rem;
}

.timeline-item p {
  color   :       #5a6c7d;
}

.contact-section {
  padding: 5rem 2rem;

	  background: #f5f7fa;
}

.contact-layout {
       display: grid;

	   margin: 0 auto;

	  grid-template-columns  :1fr 1.2fr;

	    gap: 4rem;

	    max-width   :  1280px;
}

.contact-info h2 {
	font-size: 2.5rem;
  color: #1a252f;
  margin-bottom  :        1.5rem;
}

.contact-info p {

		margin-bottom: 2rem;
    line-height: 1.7;
    color: #5a6c7d;


}

.info-items {
        display: flex;
  gap: 1.5rem;
  flex-direction: column;
}


.info-row {
   display: flex;
    align-items: center;
   gap: 1rem;
}

.info-icon {
    width: 24px;
   height  :   24px;
	stroke: #667eea;
   fill    :   none;
   stroke-width: 2;
}

.contact-form {
	background: #fff;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
} 

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
                    width: 100%;
	padding: 14px 18px;
 border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
	 font-family: inherit;
    transition     :    border-color 0.3s;
}  

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus    {
   outline: none;

	    border-color: #667eea;
}

.form-group textarea {


  resize: vertical;


}  

.submit-btn {
   width: 100%; 
  background: #667eea; 
  color: #fff; 
   padding: 16px; 
    border: none; 
    border-radius: 8px; 
    font-size: 1.1rem; 
   font-weight: 600; 
    cursor: pointer; 
   transition: all 0.3s;
}

.submit-btn:hover {
	background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.site-footer {
      background :  #1a252f;
  color: #fff;
   padding: 4rem 2rem 2rem;}

.footer-container {
    max-width: 1280px;
   margin :      0 auto;
  display  :     grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo


{
    height: 40px;
   margin-bottom    : 1rem;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
	font-size: 1.2rem;
 margin-bottom: 1.5rem;
}

.footer-column p {
  color: #a8b2bc;
	line-height: 1.7;
}



.footer-column ul     {
               list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
	color: #a8b2bc;
    text-decoration: none;
   transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #667eea;
}



.footer-bottom {
    text-align  :     center;
  border-top: 1px solid #2c3e50;
		color: #a8b2bc;
   padding-top: 2rem;
}@media (max-width: 968px) {
    .mobile-trigger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .showcase-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-display {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 580px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-area {
        padding: 3rem 1rem;
    }

    .intro-block {
        padding: 3rem 1rem;
    }

    .approach-section {
        padding: 3rem 1rem;
    }

    .visual-showcase {
        padding: 3rem 1rem;
    }

    .services-preview {
        padding: 3rem 1rem;
    }

    .process-section {
        padding: 3rem 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}.policySection  
  {
					padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
  text-align: left;
    margin: 0 auto;
	}

.policyContainer h2 {
  font-size: 2.5rem;
   color: #2c3e50;
	margin-bottom:1.5rem;
    font-weight   :        700;
	
}

.policyContainer p {
   color: #7f8c8d;
	margin-bottom : 1.5rem;
   line-height: 1.7;
	font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 2rem 4rem;
  text-align: center;
  color: #fff;
}

.services-hero-content h1 {
   font-size: 3.5rem;
		margin-bottom: 1.5rem;
	
}

.hero-description {
    opacity: 0.95;
  max-width: 800px;
    margin: 0 auto;
	font-size: 1.2rem;
}

.services-intro {
     padding: 4rem 2rem;
  background: #fff;
}

.intro-text-block {
    max-width: 800px;
  margin: 0 auto;
  text-align    :   center;
}

.intro-text-block h2 {
   font-size  : 2.3rem;
     color: #1a252f;
                  margin-bottom: 1.5rem;
}

.intro-text-block p {
     color: #5a6c7d;
    font-size: 1.1rem;
  line-height: 1.8;
     }

.detailed-services {
               padding:4rem 2rem;
  background:  #f5f7fa;
}

.service-detail-card {
	        display    :       grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
      background: #fff;
  border-radius: 16px;
    padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
	}

.service-detail-card.reverse  
  {
         grid-template-columns: 1fr 1fr;
}

.service-detail-card.reverse .service-detail-content {


  order: 2;


	}

.service-detail-card.reverse .service-detail-image {
	  order: 1; 



}

.service-badge {
  display: inline-block;
	background: #667eea;
	color: #fff;
  padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
               font-weight: 600;
   margin-bottom: 1rem;
}

.service-badge.premium


{
    background: #f39c12;
}

.service-detail-icon {

	    width: 55px;
  height     :       55px;
	stroke: #667eea;
    fill: none;
   stroke-width: 2;
	 margin-bottom: 1.5rem; 
	
     }

.service-detail-content h3 {
   font-size: 2rem;
       color: #1a252f;
    margin-bottom: 1rem;
}

.service-description  
  {
    font-size: 1.05rem;
   color: #5a6c7d;
    line-height: 1.7;
   margin-bottom: 2rem;


}

.service-features {
   display: flex;

		 flex-direction     : column;

	  gap: 1rem;

	                    margin-bottom: 2rem;
}

.feature-item {
   display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feature-icon {
    stroke-width: 2.5;
    width: 22px;
    fill: none;
    stroke: #2ecc71;
    height: 22px;
}

.feature-item span {

   color: #2c3e50;
    font-size: 0.95rem;
	}

.service-duration {
    display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 12px 18px;
   background: #f5f7fa;
    border-radius: 8px;
	width: fit-content;
}

.duration-icon {
	    width: 20px;
 height: 20px;
    stroke: #667eea;
    fill: none;
   stroke-width: 2;

} 

.service-duration span {
  font-weight: 600;
  color:       #2c3e50;
}


.service-detail-image		{
  display   :        flex;
  align-items: center;
}

.service-detail-image img		{
        width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.comparison-section {

  padding: 5rem 2rem;
   background:       #fff;

}

.comparison-section h2 {
    font-size: 2.5rem;
   color: #1a252f;
   text-align: center;
  margin-bottom: 3rem;
}

.comparison-table    {


	 max-width: 1100px;
	 margin: 0 auto;
   border: 2px solid #e0e6ed;
  border-radius: 12px;
    overflow: hidden;
}

.comparison-row  {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
   border-bottom: 1px solid #e0e6ed; 
	
}

.comparison-row:last-child  {


    border-bottom: none;


}

.comparison-row.header {
  background   :    #667eea;
	 color: #fff;
	    font-weight: 700;
}

.comparison-row.header .comparison-cell {
   color: #fff;
}

.comparison-cell    {
   padding: 1.2rem 1rem;
    text-align  :   center;
   color: #2c3e50;
   border-right: 1px solid #e0e6ed;
}

.comparison-cell:last-child {
	      border-right: none;}

.comparison-cell:first-child {
     text-align: left;
    font-weight: 600; 

}

.check-icon, .minus-icon {
    width: 24px;
  height: 24px;
  stroke-width: 2.5;
    fill: none;
}

.check-icon {
    stroke: #2ecc71;
}

.minus-icon {

    stroke     :       #e74c3c;
}

.faq-section {
  background: #f5f7fa;
    padding    :     5rem 2rem;
}

.faq-section h2 {
   font-size: 2.5rem;
  color: #1a252f;
   text-align :     center;
   margin-bottom: 3rem;
}

.faq-container {
   max-width: 900px;
    margin   :     0 auto;
}

.faq-item {

	    background:   #fff; 
	  border-radius: 12px; 
		 margin-bottom: 1.5rem; 
	    overflow: hidden; 
	  box-shadow: 0 3px 10px rgba(0,0,0,0.05);


}

.faq-question {
         transition    :    background 0.3s;
        justify-content: space-between;
   padding: 1.8rem 2rem;
   cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
	 font-size: 1.15rem;
	    color  : #1a252f;
	  font-weight: 600;
	  margin: 0;
}

.faq-toggle {
	 font-size: 1.8rem;

  color: #667eea;

  font-weight: 300;

    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
  overflow: hidden;
               transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {


    max-height: 300px; 
  padding: 0 2rem 1.8rem;


}

.faq-answer p {
  color: #5a6c7d;
  line-height: 1.7;
   margin: 0;
}

.services-cta {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);

}

.cta-box {
      max-width: 800px;
     margin    : 0 auto;
   text-align: center;
   color: #fff;

}

.cta-box h2
	{
    font-size: 2.8rem; 
  margin-bottom: 1.5rem;
}

.cta-box p {
	 font-size: 1.2rem;
   margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-btn-large {
   display: inline-block;
     background: #667eea;
  color     :     #fff;
  padding: 18px 48px;
	 text-decoration: none;
   border-radius: 10px;
	 font-weight:        700;
   font-size :   1.15rem;
   transition: all 0.3s;
}

.cta-btn-large:hover{
    background: #5568d3;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}  

.thankyou-hero {
	 min-height: 70vh;
	display: flex;
   align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  padding: 5rem 2rem;
}

.thankyou-container {
  max-width    :  1100px;
    margin     :        0 auto;
    width: 100%; 
	
}

.thankyou-content {
  text-align: center;
	margin-bottom: 4rem;
}

.success-icon-wrapper {
   margin-bottom: 2rem;
}



.success-icon {
    width: 90px;
    height: 90px;
   stroke: #2ecc71;
  fill: none;
                    stroke-width: 2;
  animation: successPulse 1.5s ease-in-out;
}@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
    font-size  :    3rem;
   color: #1a252f;
  margin-bottom: 1.5rem;
}

.thankyou-message     {
   font-size: 1.2rem;
  color: #5a6c7d;
   max-width: 700px;
    margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.thankyou-info {
  font-weight    :      600;
    font-size :      1.1rem;
   color: #2c3e50;
}

.next-steps {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  margin-top: 3rem;
}



.step-card {
   background    :     #fff;
    padding  :      2.5rem;
    border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-icon {
    width: 50px;
  height     :    50px;
  stroke    :    #667eea;
   fill: none;
    stroke-width: 2;
   margin-bottom: 1.5rem;
}

.step-card h3 {
	font-size: 1.4rem;
	    color: #1a252f;
	    margin-bottom  : 1rem;
}

.step-card p {
  color: #5a6c7d;
         margin-bottom: 1.5rem;
  line-height: 1.6;
}

.step-link {
    color: #667eea;
	 text-decoration: none;
  font-weight: 600;
    transition: color 0.3s;
}

.step-link:hover {
	color  :    #5568d3;
}



.what-happens-next {
  padding: 5rem 2rem;
   background: #fff;
}

.what-happens-next h2
	{
   font-size: 2.5rem;
  color: #1a252f;
   text-align: center;
    margin-bottom: 4rem;
}

.timeline-steps {
   max-width     :   900px;
    margin: 0 auto;
}

.timeline-step
	{
  display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
   position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
    position: absolute;
   left  :    32px;
  top     :65px;
   width: 2px;
  height: calc(100% + 15px);
    background: #e0e6ed;
}



.step-number {
     width: 65px;
  height: 65px;
   background: #667eea;
    color: #fff;
       border-radius: 50%;
  display: flex;
  align-items: center;
   justify-content     :       center;
  font-size: 1.8rem;
   font-weight: 700;
   flex-shrink: 0;
	}

.step-content h3		{
   font-size: 1.5rem;
  color: #1a252f;
  margin-bottom: 0.8rem;
}

.step-content p {
	color: #5a6c7d;
    line-height: 1.7;
}

.testimonial-preview {
  padding: 5rem 2rem;
   background   :      #f5f7fa;
}

.testimonial-preview h2  {
   font-size: 2.5rem;
   color: #1a252f;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid     {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  max-width    : 1280px;
    margin: 0 auto;
}

.testimonial-card {
       background: #fff;
    padding: 2.5rem;
   border-radius    : 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
	color    :       #667eea;
  opacity: 0.2;
   position: absolute;
	top: 20px;
   left     :     20px;
      line-height: 1;
}

.testimonial-text {
    color: #2c3e50;
	line-height: 1.7;
               margin-bottom: 1.5rem;
   padding-top: 2rem;
}

.testimonial-author {
   display    :       flex;
	 flex-direction: column;
  gap: 0.3rem;
}  

.testimonial-author strong {
    color  :    #1a252f;
	 font-size: 1.05rem;
}

.testimonial-author span {
    color  :#5a6c7d;
  font-size     :      0.9rem;
}

.emergency-contact {
   padding: 4rem 2rem;
    background: #fff;
}

.emergency-box {
   max-width: 700px;
    margin: 0 auto;
       text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    padding: 3rem;
   border-radius: 16px;
    color: #fff;
}

.emergency-icon {
          width: 60px;
               height: 60px;
    stroke: #fff;
 fill: none;
   stroke-width:    2;
   margin-bottom     :     1.5rem;
}

.emergency-box h3 {
   font-size: 2rem;
   margin-bottom: 1rem;
}

.emergency-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.95;


}

.phone-link {
   display     :   inline-block;
   background: #fff;
  color: #667eea;
    padding: 14px 36px;
    text-decoration: none;
   border-radius: 8px;
    font-weight :     700;
   font-size: 1.2rem;
  transition: all 0.3s;
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}@media (max-width: 968px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-content {
        order: 1;
    }

    .service-detail-card.reverse .service-detail-image {
        order: 2;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e0e6ed;
        text-align: left;
        padding: 1rem;
    }

    .comparison-cell:first-child {
        background: #f8f9fa;
        font-weight: 700;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 580px) {
    .services-hero {
        padding: 4rem 1rem 3rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .comparison-table {
        border: 1px solid #e0e6ed;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .emergency-box {
        padding: 2rem 1.5rem;
    }
}