* {
  margin: 0;
	padding: 0;
  box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color   :  #2c3e50;
   background: #ffffff;
   overflow-x: hidden;
}

.navigation-primary {

	  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 1rem 2rem;
  position: sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

}

.nav-container {
   max-width: 1400px;
      margin: 0 auto;
      display: flex;
       justify-content  :space-between;
     align-items :     center;
}

.nav-brand  {
                    flex: 0 0 auto;
}

.brand-logo {
   max-height: 94px; 
	  width  : auto; 
	  filter: brightness(0) invert(1); 
	                    transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
} 

.burger-toggle {
  display: none;
  background: none;
    border: none;
   cursor: pointer;
   padding: 0.5rem;
}

.burger-icon {
   width   :      28px;
   height: 28px;
  filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.burger-toggle:active .burger-icon {
  transform: scale(0.95);
}

.nav-menu {
  display: flex;
    list-style    :   none;
   gap: 3rem;
  align-items: center;
}

.nav-link 
 {
    color: #ffffff;
  text-decoration: none;
   font-size: 1rem;
   font-weight :    500;
    position :        relative;
	transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';

    position: absolute;

	bottom: 0;

    left: 0;

  width: 0;

	height: 2px;

  background: linear-gradient(90deg, #ff6b6b, #ffa94d);

  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
   display: flex;
   align-items: center;
   justify-content: space-between;
  max-width: 1400px;
   margin: 0 auto;
  padding: 6rem 2rem;
  gap: 3rem;
    min-height: 600px; 

}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-title {
    font-size  :   3.5rem;
         font-weight: 700;
                    line-height  :       1.2;
        margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
   background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
  color: #555;
   margin-bottom: 2rem;
  line-height: 1.8;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
   padding:     1rem 2.5rem;
  border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
   font-size  :        1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
  border  :      2px solid transparent;
    text-align: center;
}

.primary-cta {

  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2, #667eea);
}

.hero-visual {
	  flex: 1;
    position: relative;

}

.hero-image {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: floatImage 3s ease-in-out infinite;
}@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}.expertise-showcase {
    max-width: 1400px;
   margin: 0 auto;
  padding: 4rem 2rem;
}

.expertise-showcase h2 {
  font-size: 2.5rem;
    text-align: center;
    margin-bottom     :       3rem;
    color: #1a1a2e;
    font-weight   :  700;
}

.expertise-grid {
    display     :    grid;
                    grid-template-columns    :  1fr;
   gap: 3rem;
}

.expertise-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap   :      2rem;
    align-items: center;
	 background: #f8f9fa;
  padding: 2rem;
	border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.expertise-card:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.card-reverse {
   direction: rtl;
}

/* Performance critical */

.card-reverse > * {
    direction: ltr;
}

.card-visual {
    overflow: hidden; 
  border-radius: 8px;
}

.expertise-image {
       width: 100%;
    height: auto;
                    display: block;
   transition: transform 0.4s ease;
}

/* Utility classes */

.expertise-card:hover .expertise-image {
  transform: scale(1.05);
}

.card-content h3 {


  font-size: 1.8rem; 
      margin-bottom: 1rem; 
    color: #1a1a2e;}

/* Build system output */

.card-content p {
	color: #666;
   line-height: 1.8;
}

.services-preview		{
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Cross-browser fix */

.services-preview h2 {
  font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
	 color: #1a1a2e;
}

.services-container {
  display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin-bottom: 2rem;
}

.service-item {
    background: white;
   padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition   :       all 0.3s ease;
    border-top: 3px solid #667eea;
    position :     relative;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.service-number {
  font-size: 2.5rem;
    font-weight: 700;
	 color: #667eea;
  opacity: 0.1;
       position    :absolute;
   top: 1rem;
    right   :  1.5rem;
}

.service-item h3 {
   font-size: 1.4rem;
	  margin-bottom: 0.8rem;
		color   :        #1a1a2e;
}

.service-item p {
  color: #666;
   margin-bottom: 1.5rem;
 line-height     :   1.7;
}

.service-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
  color: #667eea;
}

.view-services-link {
      display: inline-block;
    text-align: center;
  width: 100%;
	padding: 1rem;
   border: 2px solid #667eea;
   color: #667eea;
   text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
	transition: all 0.3s ease;


}

.view-services-link:hover {
    background: #667eea;
    color: white;
}

.methodology-section {
  margin: 0 auto;
    max-width: 1400px;
    padding    :     4rem 2rem;
}

.methodology-section h2 {
  font-size: 2.5rem;
   color   : #1a1a2e;
    margin-bottom: 2rem;
  text-align: center;
}

.methodology-content {
   border-radius: 8px;
       background: #f8f9fa;
      padding: 2rem;
       margin-bottom: 2rem;
} 

.methodology-content > p {
   font-size: 1.1rem;
    line-height: 1.9;
  color: #555;
    margin-bottom: 2rem;
}

.methodology-steps {
    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {

  background: white;
   padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);


}

.step-marker {
   font-size: 2rem;
   font-weight: 700;
  width: 50px;
    height  :  50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
   border-radius  :    50%;
    display: flex;
    align-items: center;
  justify-content: center;
   margin: 0 auto 1rem;
} 

.step h4 {
   font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color     :      #1a1a2e;


}

.step p {
    color: #666;
    font-size     :      0.95rem;
}

.business-leaders-section {
   max-width: 1400px;
  margin: 0 auto;
    padding: 4rem 2rem;
}

.business-leaders-section h2 {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
    color: #1a1a2e;

}

.leaders-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.leader-profile {
   background: white;
    border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition  :all 0.3s ease;
}

.leader-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 100%;
    height: 250px;
	object-fit: cover;
  transition: transform 0.4s ease;
}

.leader-profile:hover .profile-image {


  transform: scale(1.05); 
	

}

.leader-profile h3 {
    font-size: 1.4rem;
   	padding: 1.5rem 1.5rem 0.5rem;
     color: #1a1a2e;
}

.leader-profile p {
    padding: 0 1.5rem 1.5rem;
   color: #666;
    line-height: 1.7;


}

.results-metrics {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 4rem 2rem;
    margin: 3rem 0;
}

.results-metrics h2 {
    font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
    color: white;
}

.metrics-wrapper {
  max-width   :  1400px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}



.metric-card {

	  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
	 transition: all 0.3s ease;
     }

.metric-card:hover {

	  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);

}
/* Minified version */

.metric-number {
  display:block;
   font-size: 3rem;
   font-weight  :700;
  color: #667eea;
       margin-bottom: 0.5rem;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.testimonials-section {
  max-width: 1400px;
  margin   :    0 auto;
  padding: 4rem 2rem;
}

.testimonials-section h2 {
					font-size: 2.5rem;
  text-align: center;
	margin-bottom: 3rem;
    color: #1a1a2e;
} 

.testimonials-collection {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background   :    #f8f9fa;
	   padding: 2rem;
	    border-radius: 8px;
	    border-left:4px solid #667eea;
	  transition: all 0.3s ease;
}

.testimonial-item:hover {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
  transform: translateY(-3px);
}

.testimonial-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
          margin-bottom : 1rem;
        font-style: italic;
}

.testimonial-author {
          display: block;
  color: #667eea;
   font-weight: 600;
    font-size: 0.9rem;
}

.workshop-invitation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         padding     :4rem 2rem;
  max-width   :        1400px;
   margin: 3rem auto;
    border-radius: 8px;
   color: white;


}



.workshop-invitation h2 {
  font-size: 2.5rem;

	   margin-bottom     :1.5rem;

	  color  : white;
}

.workshop-details {
               max-width: 800px;
	
}

/* Production ready */
	/* Animation and transitions */


.workshop-details > p {
    font-size: 1.1rem;
	 line-height: 1.8;
   margin-bottom: 1.5rem;


}

.workshop-features {
	    list-style: none; 
	   margin: 1.5rem 0; 
	    padding-left: 0; 



}

.workshop-features li {
   padding: 0.8rem 0;

	  padding-left: 2rem;

		position: relative;

	    font-size: 1rem;

	   line-height: 1.6;
}

.workshop-features li::before		{
  content: '✓';
	 position: absolute;
    left: 0;
   color: #fff;
  font-weight: bold;}

.workshop-cta {
  background: white;
   color: #667eea;
  margin-top: 1.5rem;
}

.workshop-cta:hover {
    background: #f8f9fa;
}

.contact-cta-section {
    max-width: 1400px;
   margin: 0 auto;
   padding: 4rem 2rem;
  text-align: center;
}
	/* Utility classes */


.contact-cta-section h2 {
	font-size: 2.5rem;
  margin-bottom: 1rem;
    color:      #1a1a2e;
}

.contact-cta-section p {
  font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
   line-height: 1.7;
}

.final-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
       color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.contact-section {
   max-width: 1400px;
   margin: 0 auto;
   padding: 4rem 2rem;
   background    : #f8f9fa;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.contact-section h2 {
   font-size: 2.5rem;
   color: #1a1a2e;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-container {

  gap: 3rem;
    grid-template-columns: 2fr 1fr;
    display: grid;


}

.contact-form {
  background: white;
    padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom   : 1.5rem;
  display: flex;
	flex-direction: column;
}

.form-group label {
  font-weight: 600;
    margin-bottom: 0.5rem;
  color:        #1a1a2e;
   font-size: 0.95rem;
}

/* Layout styles */

.form-group input,
.form-group select,
.form-group textarea {
      padding: 0.8rem;
 border: 1px solid #ddd;
  border-radius: 6px;
   font-size: 1rem;
	font-family: inherit;
   transition: all 0.3s ease; 

	}

/* Third-party styles */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
  border: none;
   border-radius: 50px;
   font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
  transition: all 0.3s ease;
	width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.contact-info     {
  background: white;
  padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
   font-size: 1.4rem;
	  color: #1a1a2e;
	    margin-bottom: 1.5rem; 
	
}

.contact-info p {
  margin-bottom   :  1rem;
   color: #666;
    line-height: 1.7;
}

.address {
   font-size: 1rem;
}

.phone {


               font-size: 1.1rem;
    color :#667eea;
   font-weight: 600;
	}

.hours {
       font-size: 0.9rem;
 color: #888;
	}

.main-footer {
   background: #1a1a2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
  margin-top: 3rem;
}

.footer-container {
    max-width: 1400px;
	margin: 0 auto;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo-section {
	grid-column: 1 / -1;
   margin-bottom  :     1rem;
}

.footer-logo {
  max-height: 136px;
  width: auto;
  filter: brightness(0) invert(1);
       transition: transform 0.3s ease;

}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-container h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
   color:      #ffffff;
  font-weight: 600;
}

.footer-container ul {
	    list-style: none;
	}

.footer-container ul li {
   margin-bottom: 0.8rem;
}
/* Experimental feature */

.footer-container a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container a:hover {
  color: #667eea;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
       margin-bottom: 0.8rem;
    line-height    :    1.6;
}

.footer-bottom {
         text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
    .burger-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #16213e;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        padding: 3rem 2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .expertise-card {
        grid-template-columns: 1fr;
    }

    .card-reverse {
        direction: ltr;
    }

    .methodology-steps {
        grid-template-columns: 1fr 1fr;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo-section {
        grid-column: 1;
    }

    h2 {
        font-size: 2rem;
    }

    .expertise-showcase h2,
    .methodology-section h2,
    .business-leaders-section h2,
    .results-metrics h2,
    .testimonials-section h2,
    .workshop-invitation h2,
    .contact-cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .expertise-card {
        padding: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .metric-number {
        font-size: 2.2rem;
    }

    .contact-info {
        order: -1;
    }

    .workshop-features li {
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 6rem 2rem;
	 position: relative;
    min-height: 400px;
  display: flex;
  align-items: center;
	justify-content: center;
   text-align: center;
}

.hero-overlay {
  max-width: 800px;
    z-index: 2;
}

.services-hero h1 {
  font-size: 3.5rem;
	 color  :     white;
   margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-hero p {
   font-size   :      1.3rem;
  color: rgba(255, 255, 255, 0.9);
   line-height     :   1.8;
}

.breadcrumb-section {
   background: #f8f9fa;
   padding: 1.5rem 2rem;
  border-bottom: 1px solid #e0e0e0;
	
}

.breadcrumb-content     {

  max-width: 1400px;

	   margin   :     0 auto;

	  font-size: 0.95rem;

	    color: #666;
}

.breadcrumb-content a {
    color: #667eea;
    text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
  color: #764ba2;
}

.separator {
  margin: 0 0.5rem;

       color: #999;
}

.current {
   color: #1a1a2e;
  font-weight: 600;
}

.services-detailed {


  max-width: 1400px;
  margin: 0 auto;
    padding   : 4rem 2rem;


}

.services-wrapper		{
   display: grid;
    grid-template-columns: 1fr;
  gap: 4rem;
}

.service-detail-card {
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
	align-items: center;
  padding: 2rem;
	 background: #f8f9fa;
    border-radius: 8px;
  border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.card-reverse {
    direction: rtl;
}

.card-reverse > * {
    direction: ltr;

}

.service-detail-image {
	 border-radius: 8px;
   overflow: hidden;
    height: 350px;
} 

.detail-image {
    width: 100%;

	   height: 100%;

	   object-fit: cover;

	  transition: transform 0.4s ease;
}

.service-detail-card:hover .detail-image {
  transform: scale(1.05);
}

.service-detail-content h2 {
  font-size: 2rem;
       color: #1a1a2e;
  margin-bottom: 1rem;

}

.service-meta {
  display: flex;
          gap: 1rem;
  margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-tag,
.duration-tag {
  padding   :    0.5rem 1.2rem;
    border-radius :  50px;
  font-weight: 600;
   font-size: 0.9rem;
}

.price-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.duration-tag {
  background: rgba(102, 126, 234, 0.1);
   color: #667eea;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
   margin-bottom  :  1.5rem;
}

.service-detail-content h3 {
   color: #1a1a2e;
   margin: 1.5rem 0 1rem;
  font-size: 1.3rem;
}

.service-features {

	    margin-bottom: 1.5rem;
  list-style: none;
}

.service-features li {
   padding: 0.6rem 0;
          padding-left: 2rem;
  position: relative;
  color: #666;
    line-height: 1.6;
}

.service-features li::before {
  content: '✓';
    position: absolute;
  left: 0;
  color: #667eea;
   font-weight   :  bold;
  font-size: 1.2rem;
}

.service-additional {
   font-size: 0.95rem;
  color: #777;
  line-height: 1.7;
   font-style: italic;
}

.service-comparison {
  max-width:       1400px;
  margin: 0 auto;
    padding  :4rem 2rem;
    background: white;
}

.service-comparison h2 {
   font-size: 2.5rem;
    text-align: center;
  margin-bottom: 3rem;
   color: #1a1a2e;
}

.comparison-table {
   width: 100%;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		 border-radius: 8px;
}

table {
   width    :       100%;
    border-collapse:    collapse;
  background: white;
}

thead {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
   color: white;
}

th {
  padding  :    1.5rem;
    text-align: left;
  font-weight: 600;
	border-bottom: 2px solid #667eea;
}

td {
	padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
  background: #f8f9fa;
}

.feature-name {
   font-weight: 600;
    color: #1a1a2e;
  min-width: 150px;
}

.faq-section
	{


  max-width: 1400px;
   margin: 0 auto;
    padding: 4rem 2rem;
	


}

.faq-section h2 {
    font-size   :       2.5rem;
	text-align: center;
  margin-bottom: 3rem;
   color:      #1a1a2e;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.faq-item {
    background: white;
	padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-left: 4px solid #667eea;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.faq-question {
       font-size: 1.1rem;
    color: #1a1a2e;
  margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer {
   color: #666;
  line-height: 1.8;
				 font-size: 0.95rem;
}

.cta-services-final {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  text-align: center;
    margin: 3rem 0;
}

.cta-services-final h2     {
   font-size: 2.5rem;
	color:       white;
   margin-bottom: 1rem;
}

.cta-services-final p {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
   margin-left: auto;
    margin-right: auto; 

}

.final-services-cta {
  background: white;
    color: #667eea;
}

.final-services-cta:hover {
	background     :#f8f9fa;
}

.thank-you-container {
    max-width     :      900px;
        margin: 0 auto;
  padding: 4rem 2rem;
    min-height: 500px;
}

.thank-you-content {
  background    :      white;
   padding     :   3rem;
   border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                    text-align     :  center;
}

.success-icon   {
   margin-bottom: 2rem;
}

.checkmark-icon {
   width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thank-you-content h1 {
    font-size: 2.5rem;
  color: #1a1a2e;
   margin-bottom: 0.5rem;
    font-weight:  700;
}

.thank-you-subtitle {
  font-size: 1.2rem;
   color: #667eea;
  margin-bottom: 2rem;
  font-weight: 600;
}

.reservation-summary {
    background: #f8f9fa;
   padding: 2rem;
  border-radius: 8px;
    margin: 2rem 0;
  text-align:    left;
}

.reservation-summary h2 {
   font-size: 1.5rem;
    margin-bottom     :        1.5rem;
	color: #1a1a2e;
   text-align: center;

}

.summary-details
	{
    display: grid;
   gap: 1rem;
}

.summary-item {
    display: grid;
    grid-template-columns   :      200px 1fr;
	 gap: 1rem;
   align-items: center;
   padding: 1rem;
  background: white;
   border-radius: 6px;
  border-left: 3px solid #667eea;
}

.summary-label {
  font-weight: 600;
  color: #1a1a2e;
}

.summary-value{
    color: #667eea;
    font-size: 1.1rem;
}

.next-steps {
   margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-align: center;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timeline-step {
   background: #f8f9fa;
  padding: 1.5rem;
   border-radius: 8px;
   border-left  :4px solid #667eea;
   transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.step-number {
   width: 40px;
   height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius :   50%;
  display: flex;
	 align-items: center;
        justify-content: center;
    font-weight    :     700;
   font-size: 1.2rem;
               margin-bottom: 1rem;
}

.step-content h3 {
	 font-size: 1.1rem;
    color: #1a1a2e;
   margin-bottom: 0.5rem;
}

.step-content p {
   color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-quick {
     background: white;
   padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
	margin: 2rem 0;
  text-align: left;
}

.faq-quick h2 {
   font-size: 1.5rem;
   color: #1a1a2e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-list {
	list-style: none;
    display: grid;
      gap: 1rem; 
	
}

.info-list li   {
  padding: 0.8rem 0 0.8rem 2rem;
   position: relative;
   color: #666;
    line-height: 1.6;
}

.info-list li::before {
  content: '→';
   position: absolute;
    left: 0;
   color     :  #667eea;
   font-weight: bold;
   font-size    :    1.2rem;
}

.action-buttons {
  display :grid;
   grid-template-columns: 1fr 1fr;
  gap  :      1rem;
   margin: 2rem 0;
}

.back-home-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
}

.back-home-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	}

.view-services-btn {
  background: white;
	color :   #667eea;
    border: 2px solid #667eea;
}

.view-services-btn:hover {
   background: #667eea;
   color: white;
}

.related-services-thankyou {
  max-width  :       1400px;
    margin: 3rem auto 0;
  padding: 4rem 2rem;
}

.related-services-thankyou h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
   color   :        #1a1a2e; 
	
}

.related-services-grid	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :2rem;
}

.related-service-card {
	transition: all 0.3s ease;
	border-left    :     4px solid #667eea;
  text-align: center;
	padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.related-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}


.related-service-card h3 {
  font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.related-service-card p {
    color: #666;
    font-size     :    0.95rem;
  line-height: 1.7;
    margin-bottom: 1rem;

}

.related-service-card .price {
    display: block;
   font-size: 1.3rem;
  font-weight: 700;
   color: #667eea;
}@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-reverse {
        direction: ltr;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .service-meta {
        flex-direction: column;
    }

    .price-tag,
    .duration-tag {
        width: 100%;
    }

    .summary-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    th,
    td {
        padding: 0.8rem;
    }

    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .service-detail-content h3 {
        font-size: 1.1rem;
    }

    .checkmark-icon {
        width: 60px;
        height: 60px;
    }

    .thank-you-content h1 {
        font-size: 1.6rem;
    }

    .service-meta {
        gap: 0.5rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    th,
    td {
        padding: 0.6rem;
    }
}.policy-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 4rem 2rem;
   text-align: center;
  min-height: 250px;
  display: flex;
   align-items: center;
   justify-content: center;
}

.policy-hero h1 {
  font-size   :       3rem;
  color: white;
   font-weight: 700;
  letter-spacing  :        -0.5px;
} 

.policy-section {
  padding: 5rem 2rem;
       background:      #ffffff;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.policy-container h2 {
  font-size: 2rem;
  color  :    #1a1a2e;
    margin: 2.5rem 0 1rem;
  font-weight: 700;
    line-height: 1.3;
	
}

.policy-container h2:first-child {
  margin-top: 0;
}

.policy-container p {
	color: #555;
    margin-bottom: 1.5rem;
  line-height: 1.9;
	 font-size: 1rem;
}

.policy-container p:last-of-type {
   margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-section {
        padding: 3rem 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
        margin: 2rem 0 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 3rem 1rem;
        min-height: 200px;
    }

    .policy-hero h1 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.6rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}