* {


   box-sizing: border-box;
  padding: 0;
  margin: 0;}

/* Minified version */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #1a1a1a;
  background-color: #fafafa;
    line-height: 1.6;
}

.navbar     {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding    :     1rem 0;
          position: sticky;
    top  :   0;
	z-index  :    1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-container
{
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
	display: flex;
    justify-content: space-between;
	align-items: center;
}

.logo-section {
   flex  :     0 0 auto;
}

.nav-logo {
    height: 50px;
    width   :    auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
	display: flex;
         list-style: none;
    gap: 2rem;
   align-items: center;
}


.nav-link {
    color   :       #fff;
	   text-decoration     :none;
	   font-weight: 500;
	  transition  :   color 0.3s ease;
		position  :   relative;
	
}

.nav-link:after {
  content: '';
	  position: absolute;
	    bottom   :    -5px;
		left: 0;
	   width: 0;
	    height: 2px;
	  background: linear-gradient(90deg, #ff6b35, #f7931e);
	    transition: width 0.3s ease;
}

.nav-link:hover:after{
          width: 100%; 
	
}

/* Layout styles */

.burger-btn {
  display:  none;
   flex-direction: column;
   background  :        none;
    border: none;
   cursor: pointer;
  gap: 0.4rem;
}

.burger-btn span {
   width  :        25px;
	height: 3px;
   background  : #fff;
   border-radius: 2px;
  transition   : all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {

  transform: rotate(45deg) translate(10px, 10px); 
	

}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {


  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    max-width: 1200px;
   margin: 0 auto;
          padding: 4rem 2rem;
   display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
     font-size     :        3.5rem; 
   font-weight: 800; 
	margin-bottom: 1rem; 
  background: linear-gradient(135deg, #ff6b35, #f7931e); 
  background-clip     : text;
	}

.hero-content p {
    font-size: 1.2rem;
	 color: #555;
   margin-bottom: 2rem;
}

.cta-button {
   display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
  text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {


  transform: translateY(-3px);

  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); 
	
}

/* Utility classes */

.hero-image img {
   width: 100%;
    height     :      auto;
     border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
         text-align: center;
          margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
      margin-bottom: 0.5rem;
    color: #1a1a1a; 
	
}

.section-header p {
   font-size: 1.1rem;
   color: #888;
}

.featured-fleet {
  max-width: 1200px;
    padding: 0 2rem;
   margin: 4rem auto;


}

.fleet-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.fleet-card {
   background: white;
   border-radius: 12px;
          overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); 

}

.fleet-card img {
    width:      100%;

   height: 220px;

  object-fit: cover;
}

.fleet-card h3 {
	        padding     :       1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
    color :       #1a1a1a;}

.fleet-card p     {
	padding: 0.5rem 1.5rem 1.5rem;

	   color: #666;

	    font-size  :      0.95rem;
} 

.coaching-services {
	padding: 0 2rem;
    max-width  :       1200px;
    margin: 4rem auto;


}

.services-container {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2.5rem;}

.service-block {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 2rem;
   border-radius: 12px;
   text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1); 

}
/* Third-party styles */

	/* Third-party styles */

.service-block:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg, #fff9f5 0%, #fff0e8 100%);
}

.service-icon {
    height: 60px;
    display  :       flex;
   align-items: center;
       justify-content    :      center;
         margin-bottom: 1rem;
}

/* Debug styles */

/* Responsive design */


/* Component styles */
.service-icon img


{
	width     :  45px;
	 height: 45px;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.3));
}

/* Debug styles */

.service-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-block p {
   color: #666;
  margin-bottom:       1.5rem;
  font-size: 0.95rem;
}
	/* Layout styles */



/* Utility classes */


.service-price {
   display: block; 
	    font-size: 1.2rem; 
	    font-weight: 700; 
	    color: #ff6b35;
}

.routes-section {
	 max-width:        1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.routes-grid {
  display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap :      2rem;
}

.route-card {
  background    :       white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff6b35;
  transition:all 0.3s ease;
}

.route-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.route-card h3 {
    color: #1a1a1a;
   margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.route-card p {
   color: #666;
  font-size: 0.95rem;
}

.cta-consultation {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 4rem 0;
   padding: 3rem 2rem;
    text-align     :        center;
}

.cta-content h2 {
  color  :     white;
  font-size: 2rem;
  margin-bottom  :       1rem;
}

.cta-content p {
   margin-left: auto;
  max-width     : 600px;
   margin-right: auto;
   font-size: 1.1rem;
   color: #ccc;
  margin-bottom: 2rem;
}

.cta-button-secondary {
   display: inline-block;
    padding: 15px 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
         text-decoration: none;
   border-radius: 50px;
  font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  transform: scale(1.05);
}

.contact-section {
	 max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.contact-form{
    max-width: 600px;

  margin: 2rem auto;

    display: grid;

  gap: 1.5rem;
}

.form-group {
	   display: flex;
    flex-direction: column;
}
/* Cross-browser fix */


/* Legacy code */


.form-group input,
.form-group select,
.form-group textarea {
   padding  :  12px 16px;
   border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
  font-family: inherit;
               transition: all 0.3s ease; 

}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline    : none;
   border-color  :  #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-submit		{
      padding: 15px 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
    border: none;
   border-radius: 8px;
   font-size: 1rem;
       font-weight: 600;
    cursor: pointer;
   transition     :  all 0.3s ease;
}

.form-submit:hover     {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}



.footer {
    background :#1a1a1a;
   color: white;
  margin-top: 4rem;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {

  max-width: 1200px;
     margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-block h4 {
    margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-block ul {
	 list-style: none;
}

.footer-block ul li {
  margin-bottom: 0.5rem;
}  

.footer-block a {
     -webkit-transition :        color 0.3s ease;
  -o-transition: color 0.3s ease;
  color: #ccc;
   text-decoration: none;
	 transition: color 0.3s ease;
}

.footer-block a:hover {
 color: #ff6b35;
}

/* Development only */

.footer-logo {
  height: 60px;
		width: auto;
	  filter: brightness(0) invert(1);
}
/* Typography */


.phone-link {
    color: #ff6b35;
    font-weight: 600;
}

.footer-bottom {
   text-align   :     center;
	 padding-top: 2rem;
  border-top: 1px solid #333;
  color:      #999;
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #1a1a1a;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-hero

{
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8)), 
                url('../mockups/alpine_driving_experience_supercar.webp') center/cover no-repeat;
	padding: 6rem 2rem;
  text-align: center;
 color: white;
   position: relative;
      min-height: 400px;
    display    : flex;
  align-items: center;
   justify-content: center;
}

.hero-overlay h1 {

			 font-size: 3rem;

	    margin-bottom: 1rem;

	   font-weight: 800;
     }

.hero-overlay p    {
   font-size: 1.3rem;
	color: #ddd;
}

.breadcrumb-section {
  background: #f5f5f5;
    padding: 1.5rem 2rem;
   border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-container {
	max-width: 1200px;
     margin: 0 auto;
    font-size: 0.95rem;
    color: #666;
}

.breadcrumb-sep {
   margin : 0 0.5rem;
  color: #999;
     }

.breadcrumb-container a {
    color:    #ff6b35;
                    text-decoration: none;
   transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
    color: #f7931e;
}

.service-details-section 
 {
	   margin: 4rem auto;
   max-width: 1200px;
   padding: 0 2rem;
     }

.service-container {
	 display: flex;
   flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
         align-items: center;
   background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-detail-card:hover {
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);


}

.service-detail-card.alternate {
  direction: rtl;
}

.service-detail-card.alternate .service-detail-content {
   direction: ltr;
}

.service-detail-image img {

	   width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.service-detail-content h2 {
         font-size: 2rem;
	color: #1a1a1a;
         margin-bottom: 0.5rem;

}

.service-tagline {
    font-size: 1.1rem;
    color: #ff6b35;
  font-weight: 600;
   margin-bottom: 1rem !important;
}


.service-detail-content p   {

	    color: #666;
   margin-bottom : 1.5rem;
          line-height: 1.8;
	font-size  :     0.95rem;


}

.service-features {
  border-top: 1px solid #e0e0e0;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #e0e0e0;
   padding: 1.5rem 0;
    margin-bottom:2rem;
    display: grid;
    gap    :1.5rem;
}

.feature-item {
   display: flex;
  gap: 1rem;
   align-items: flex-start;
}

.feature-icon {
                    flex-shrink     :0;
   width: 50px;
  height: 50px;
  display: flex;
 align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
   border-radius: 8px;
}

.feature-icon img{
   width: 30px;

	   height: 30px;

	  filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.4));
}

.feature-text strong     {
  display: block;
  color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: #888;
  font-size: 0.9rem;
	 margin: 0;
}

.service-detail-footer {
   display :flex;
               justify-content:     space-between;
    align-items: center;
   padding-top: 1rem;
}

.service-detail-price {

	font-size: 1.5rem;
            font-weight: 800;
   	color: #ff6b35;
     }

.service-detail-btn {

	  display: inline-block;
   padding: 12px 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
   border-radius: 25px;
               font-weight: 600;
  transition: all 0.3s ease;
	}

.service-detail-btn:hover {

  transform: translateY(-2px); 
	  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);


}

.comparison-section {
   max-width: 1200px;
  margin: 4rem auto;
        padding   :  0 2rem;
} 

.comparison-container h2 {
    text-align: center;
  font-size     :  2rem;
    margin-bottom: 2rem;
   color: #1a1a1a;
}

.comparison-table {
               overflow-x: auto;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
           width: 100%;
   border-collapse: collapse;
    background: white;
}

.comparison-table th
	{
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
    padding   :      1.5rem;
          text-align: left;
        font-weight: 700;
  font-size: 0.95rem;
}

.comparison-table td {
    padding: 1.5rem;
   border-bottom    :1px solid #e0e0e0;
    color: #666;
}

.comparison-table tbody tr:hover
	{
   background: #f9f9f9;
}

.comparison-table strong {
   color: #1a1a1a;
}

.faq-section{

	                    max-width: 1200px;
    margin: 4rem auto;
    padding :   0 2rem;
	}  

.faq-container h2 {
   text-align    :   center;
   font-size     :    2rem;
  margin-bottom: 3rem;
    color: #1a1a1a;
	
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 1.5rem;
}

.faq-item {
				 background: white;
  border-radius: 8px;
  overflow  : hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question     {
  width: 100%; 
	   padding: 1.5rem; 
	          background: #f9f9f9; 
		border: none; 
	   cursor: pointer; 
	   display: flex; 
	   justify-content     : space-between; 
	    align-items: center; 
	    font-size: 1rem; 
	  font-weight: 600; 
		color: #1a1a1a; 
	  transition: all 0.3s ease; 
	   -webkit-transition    :      all 0.3s ease; 
	
}

.faq-question:hover {
	background: #f0f0f0;
}

.faq-question.active  
  {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  color: #ff6b35;
}

.faq-icon {
   width: 20px;
  height: 20px;
  transition:        transform 0.3s ease;
}

.faq-question.active .faq-icon    {

  transform: rotate(180deg);
     }

.faq-answer {
    overflow: hidden;
  max-height   :       0;
   transition: max-height 0.3s ease;
}

.faq-answer.active{
  max-height: 500px;
}

.faq-answer p {
   padding: 1.5rem;
   color:  #666;
	line-height: 1.8;
}

.testimonials-section {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
	   padding: 4rem 2rem;
	   margin: 4rem 0;
}

.testimonials-container {
   max-width: 1200px;
   margin: 0 auto;
}

.testimonials-container h2 {
  text-align: center;
    font-size: 2rem;
    margin-bottom   :  3rem;
    color :       #1a1a1a;

}

.testimonials-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
  padding   :    2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.testimonial-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);


}

.stars {

   display: flex;
    gap: 0.25rem;
  margin-bottom: 1rem;
	
     }

.star {
  color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
   font-style: italic;
   font-size: 0.95rem;
   margin-bottom: 1rem;
  color: #666;
    line-height: 1.8;
}

.testimonial-author {
       color: #999;
    font-size: 0.9rem;
  font-weight: 600;
	}

.thankyou-section {
               min-height: 70vh; 
	  display: flex; 
	  align-items: center; 
	       justify-content  :center; 
	  padding: 3rem 2rem; 
	  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.thankyou-container {
    max-width:600px;
  width: 100%;
}

.thankyou-card {
         background: white;
   padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	 text-align: center;
}

.success-icon {
         margin-bottom: 2rem;
}

.success-icon img

{
  width: 80px;
    height: 80px;
  filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.4));
}

.thankyou-card h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
         margin-bottom: 1rem;
}

.thank-message {
     font-size     :     1.1rem;
  color: #666;
      margin-bottom: 2rem;
  line-height: 1.8;
}



.confirmation-details   {
  background: #f9f9f9;
  padding     :  2rem;
    border-radius     :  8px;
   margin-bottom: 2rem;
  text-align: left;
} 

.detail-item {
   margin-bottom: 1.5rem;
}

.detail-item:last-child {

	  margin-bottom: 0;


}

.detail-item strong {
   display: block;
	color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.detail-item ul {

	  list-style: none;
  padding-left: 0;

}

.detail-item ul li {
	 position: relative;
    margin-bottom: 0.5rem;
	padding-left: 1.5rem;
   color    :       #666;
}

.detail-item ul li:before {

  content: '✓';
   position: absolute;
    left: 0;
   color: #ff6b35;
    font-weight   :    bold;
	}

.detail-item p {
	   color   : #666;

	  margin: 0.5rem 0;}



.contact-phone
	{
  font-size: 1.3rem;
    font-weight   :        700;
   margin: 1rem 0 !important;
	}

.contact-phone a {
   color: #ff6b35;
    text-decoration:none;

}

.contact-phone a:hover {
     text-decoration: underline; 

}

.contact-hours  {
   font-size: 0.9rem;
          color: #999 !important; 

}

.thankyou-actions {
      display: grid;
        grid-template-columns    :  1fr 1fr;
    gap: 1rem;
  margin-bottom: 2rem;
	


}

.thank-button {
   display: inline-block;
       padding: 15px 25px;
     border-radius: 25px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
 text-align: center;
}

.thank-button.primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e); 
   color: white;
}

.thank-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.thank-button.secondary {
	background: #f0f0f0;
	color :        #1a1a1a;
   border: 2px solid #ff6b35;
}

.thank-button.secondary:hover {
	background: #ff6b35;
    color: white;
}

.additional-info {
  background: rgba(255, 107, 53, 0.05);
        border-left: 4px solid #ff6b35;
  padding: 1.5rem;
  border-radius: 4px;
   text-align: left;
}

.additional-info p	{
	color: #666;
  margin: 0;
  font-size     :  0.9rem;
}

.next-steps-section


{
       max-width: 1200px;
   margin: 4rem auto;
  padding: 0 2rem;
}

.next-steps-container h2 {
  text-align: center;
    font-size: 2rem;
   margin-bottom: 3rem;
   color   :  #1a1a1a;
}

.steps-timeline{
	  display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap    :1rem;
    align-items: center;
   margin-bottom:2rem;
   flex-wrap: wrap;
	}

.step {
   background: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
    min-width: 180px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
     border-radius: 50%;
	display  :flex;
  align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-content h3		{
    color: #1a1a1a;
      margin-bottom: 0.5rem;
}

.step-content p {
   color: #666;
        margin: 0;
    font-size: 0.9rem;
}

.step-arrow {
		 color: #ff6b35;
               font-size: 2rem;
  text-align:   center;
} 

.explore-section {

	  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
     color: white;
  padding: 4rem 2rem;
    margin: 4rem 0 0;
	}

.explore-container {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-container h2 {
      text-align: center;
  font-size: 2rem;
    margin-bottom: 3rem;
}

.explore-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.explore-card {
  background: rgba(255, 255, 255, 0.05);
   padding :2rem;
   border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.explore-card:hover {
  background: rgba(255, 107, 53, 0.1);

  border-color: rgba(255, 107, 53, 0.5);
}

.explore-card h3 {
   font-size: 1.3rem;
   margin-bottom    :        0.8rem;
    color: #ff6b35;

}

.explore-card p 
 {
    color: #ddd;
	margin-bottom: 1.5rem;
   font-size: 0.95rem;
}  

.explore-link {
  display: inline-block;
    padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
   text-decoration: none;
   border-radius: 20px;
   font-weight: 600;
    transition: all 0.3s ease;
}

.explore-link:hover {
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-card.alternate {
        direction: ltr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-detail-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail-btn {
        width: 100%;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .thankyou-card h1 {
        font-size: 1.8rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
	padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  min-height: 70vh;
}

.policyContainer {
    max-width: 900px;
 margin: 0 auto;
    text-align    :    left;
  background: white;
  padding: 3rem;
    border-radius    : 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
  font-size: 3rem;
  color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 800;
   border-bottom: 4px solid #ff6b35;
         padding-bottom: 1rem;
}

.policyContainer h2 {


  color     :#1a1a1a;
   font-size     :  1.8rem;
          margin-top: 2rem;
  margin-bottom: 1rem;
   font-weight:    700;
    color: #2d2d2d;
     }

.policyContainer p {
    color    : #666;
	margin-bottom: 1.5rem;
  line-height: 1.8;
   font-size: 1rem;
}

.policyContainer strong {
    color: #1a1a1a;
	font-weight  :      600;
}

.policyContainer > p:first-of-type {
  font-size:      1.1rem;
    color: #555;
  font-style     :  italic;
    margin-bottom: 2rem;
}

.policyContainer ul {
   list-style-position: inside;
   color: #666;
               margin-bottom: 1.5rem;
   line-height   :   1.8;


}

.policyContainer ul li {
    margin-bottom: 0.8rem;
}  

.policyContainer ol {
 list-style-position: inside;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8; 

}

.policyContainer ol li {
        margin-bottom: 0.8rem;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}