* {
	 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: #1a1a1a;
    background-color  :        #f8f9fa;
}

a {
  text-decoration: none;
    color : inherit;


} 

button {
	border: none;
   background: none;
    cursor: pointer;
	font-family: inherit;
}

.main_nav {
   background-color: #000;
    padding: 1rem 2rem;
	position: sticky;
    top: 0;
   z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav_container {
	max-width: 1200px;
     margin: 0 auto;
	display: flex;
     justify-content: space-between;
   align-items: center;
}

.nav_logo {
	display: flex;
  align-items    :     center;
}

.logo_img   {


   height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
     }

.mobile_toggle {


   display    :      none;
   flex-direction: column;
  background: transparent;
  border: none;
        cursor: pointer;
   padding   :   0.5rem;}

.mobile_toggle img {
   width: 24px;
  height: 24px;
  stroke :    #fff;
  filter: brightness(0) invert(1);
}

.nav_menu {


          display: flex;
   list-style: none;
   gap: 2.5rem;
	}

.nav_menu a {
       color: #fff;
   font-weight: 500;
      font-size: 1rem;
   transition: color 0.3s ease;
	padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
     }

.nav_menu a:hover {
	  color: #d4af37;
	 border-bottom-color: #d4af37;
	}

.hero_section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  padding: 5rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 3rem;
   align-items: center;
    min-height: 500px;
}

.hero_content h1 {
   font-size: 3rem;
       font-weight: 700;
  margin-bottom: 1rem;
   line-height: 1.2;
}

.hero_subtitle {
   font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero_section img {
               width: 100%;
   height: auto;
   border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta_button {
   display: inline-block;
               background-color: #d4af37;
    color: #000;
	padding: 1rem 2.5rem;
	border-radius: 50px;
    font-weight    :        600;
  font-size: 1rem;
   transition:      all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta_button:hover {
   background-color: #e5c158;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.container {
  max-width: 1200px;
   margin: 0 auto;
	 padding    :  0 2rem;
}



.services_preview {
         padding: 5rem 0;
    background-color: #fff;
}

.services_preview h2 {
  font-size: 2.5rem;
    text-align: center;
  margin-bottom :        3rem;
  color: #000;
}

.services_grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;

}


.service_card {
    background    :   #f8f9fa;
  border-radius :      12px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
} 

.service_card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service_card img    {
	 width: 100%;
   height    :200px;
    object-fit :cover;
}

.service_card h3 {
          font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
  color: #000;
}

.service_card p {
  padding: 0 1.5rem 1.5rem;
   color: #666;
    font-size: 0.95rem;
}

.coaching_info {
  background: linear-gradient(135deg, #f0f0f0 0%, #fff 100%);
  padding: 5rem 0;
}

.coaching_info h2 {
    font-size    :  2.3rem;
  margin-bottom: 2rem;
				 color: #000;
}

.coaching_content p {
  font-size: 1.1rem;
    color: #333;
  margin-bottom: 2rem;
    line-height: 1.8;
}

.coaching_features {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-top: 2rem;
}

.feature_item {
   background: #fff;
	padding:  2rem;
   border-radius: 10px;
   border-left: 4px solid #d4af37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature_item h3 {
 font-size: 1.2rem; 
	    margin-bottom: 0.8rem; 
	    color: #000;
}

.feature_item p	{
   color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.cta_appointment	{
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); 
	   color :    #fff; 
	   padding: 4rem 2rem; 
	  text-align     :        center;
}

.cta_appointment h2 {
    font-size: 2.2rem;
         margin-bottom:        1rem;
}

.cta_appointment p {
               font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity : 0.9;
}

.cta_button_large {
  display :inline-block;
    background-color :       #d4af37;
   color: #000;
    padding: 1.2rem 3rem;
    border-radius  :     50px;
	font-weight: 600;
    font-size: 1.1rem;
	 transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta_button_large:hover {
   background-color: #e5c158;
  transform: scale(1.05); 
	
}

.contact_section {
	    padding: 5rem 0;
   background-color :        #fff;
}

.contact_section h2 {
    color: #000;
     font-size:       2.3rem;
   margin-bottom: 3rem;
  text-align: center;}



.contact_form {
		max-width    :      600px;
   margin: 0 auto;
   background: #f8f9fa;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.form_group {

	   margin-bottom: 1.5rem;
 flex-direction: column;
   display: flex;

}

.form_group label {
   font-weight: 600;
               margin-bottom: 0.5rem;
   color: #000;
   font-size  :        0.95rem;
}

.form_group input,
.form_group select,
.form_group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
  border-radius:     6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
	outline: none;
    border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit_button {
    width: 100%;
                    padding: 1rem;
   background-color: #000;
  color     :       #d4af37;
  font-weight  :600;
  border-radius    :      6px;
	font-size: 1rem;
    cursor: pointer;
    transition    :    all 0.3s ease;
    border: 2px solid #000;
}

.submit_button:hover {
    background-color: #d4af37;
   color: #000;
}

.main_footer {
    background-color   :       #000;
	 color: #fff;
    padding: 3rem 0;}

.footer_container {
	  max-width: 1200px;
  margin   :    0 auto;
    padding: 0 2rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
    margin-bottom: 2rem; 
	}

.footer_section h3{
   font-size: 1.1rem;
	 margin-bottom :     1rem;
   color: #d4af37;
}

.footer_section ul {
  list-style: none;
} 

.footer_section ul li {
   margin-bottom: 0.8rem;
}

.footer_section a {
     color :      #ccc;
   transition: color 0.3s ease;
     }

.footer_section a:hover {
  color: #d4af37;
}

.footer_section p {
    color: #aaa;
  font-size: 0.9rem;
   line-height: 1.8; 
	
}

.footer_logo {
  height: 50px;
 width: auto;
  filter: brightness(0) invert(1);
}



.footer_bottom {
  border-top     :  1px solid #333;
    padding-top: 2rem;
    text-align: center;
	color: #888;
}  @media (max-width: 768px) {
    .mobile_toggle {
        display: flex;
    }

    .nav_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav_menu.active {
        display: flex;
    }

    .nav_menu a {
        padding: 0.8rem 0;
        border-bottom: 1px solid #333;
    }

    .hero_section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        min-height: auto;
    }

    .hero_content h1 {
        font-size: 2rem;
    }

    .hero_subtitle {
        font-size: 1rem;
    }

    .services_preview h2 {
        font-size: 1.8rem;
    }

    .coaching_info h2 {
        font-size: 1.8rem;
    }

    .contact_form {
        padding: 1.5rem;
    }

    .cta_appointment h2 {
        font-size: 1.6rem;
    }

    .footer_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav_container {
        padding: 0.5rem 1rem;
    }

    .logo_img {
        height: 35px;
    }

    .hero_content h1 {
        font-size: 1.5rem;
    }

    .hero_section {
        padding: 2rem 1rem;
    }

    .services_grid {
        grid-template-columns: 1fr;
    }

    .cta_button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}.services_hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
 color: #fff;
  padding    : 4rem 2rem;
	text-align: center;
 min-height: 300px;
    display: flex;
  align-items: center;
   justify-content: center; 
	}

.hero_content_services h1 {


    font-size: 2.8rem;
    font-weight: 700;
  margin-bottom: 1rem;
   line-height: 1.2;
	}

.hero_subtitle_services {
    font-size: 1.2rem;
    opacity: 0.9;
   max-width :600px;
   margin: 0 auto;
}

.services_detailed {
    padding: 5rem 0;
   background-color     :     #fff;
}

.services_detailed h2 
 {
    font-size: 2.5rem;
    text-align: center;
     margin-bottom: 3rem;
                    color: #000;
}

.service_detail_card {
         display     :     grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items     : center;
   margin-bottom: 4rem;
	 background: #f8f9fa;
  border-radius: 12px;
 overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service_detail_card.reverse {
  grid-template-columns: 1fr 1fr;
   direction     :      rtl;

}

.service_detail_card.reverse > * {
   direction: ltr; 

}

.service_detail_image {


    overflow: hidden; 
   border-radius  :      12px;
     }

.service_detail_image img {
   object-fit: cover;
  transition: transform 0.3s ease;
  width    :        100%;
   height: 100%;
}

.service_detail_card:hover .service_detail_image img   {

	  transform: scale(1.05);


     }

.service_detail_content {

  padding: 2rem;


} 

.service_detail_content h3 {
   margin-bottom: 1rem;
    color    :#000;
   font-size: 1.8rem;
}

.service_detail_content p {
    color:  #666;
    font-size: 1rem;
          margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service_features {
   list-style  :none;
   padding: 0;
}

.service_features li {

	  padding: 0.6rem 0;
  padding-left: 1.5rem;
  color: #333;
	 position    :       relative;
    font-weight: 500;

}

.service_features li:before {
  content: "✓";

	  position: absolute;

	   left: 0;

	  color: #d4af37;

	  font-weight: bold;

	    font-size: 1.2rem;
}

.pricing_section 
 {
  background: linear-gradient(135deg, #f0f0f0 0%, #fff 100%);
    padding: 5rem 0;
}

.pricing_section h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
  color    :       #000;
}



.pricing_grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
	
}

.pricing_card {
    background: #fff;
   border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
   transition  :  all 0.3s ease;
    position: relative;


}

.pricing_card:hover  {
     transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	}

.pricing_card.featured {
	   border: 2px solid #d4af37;
  transform: scale(1.05);
	}

.featured_badge {
		 position: absolute;
    top: -12px;
                    left: 50%;
  transform: translateX(-50%);
    background-color: #d4af37;
    color: #000;
          padding: 0.5rem 1.5rem;
      border-radius: 20px;
  font-size: 0.85rem;
   font-weight: 600;
}

.pricing_card h3 {
    font-size: 1.5rem;
   color: #000;
   margin-bottom     :  1rem;
   margin-top  :     0.5rem;
}

.price_tag		{
  margin-bottom: 0.5rem;
    color: #d4af37;
   font-size: 2rem;
    font-weight: 700;
}

.pricing_card > p:not(.price_tag) {
         margin-bottom: 1.5rem;
  color: #666;
  font-size: 0.95rem;


}

.pricing_features {
   list-style: none;
	 padding    :        0;
    text-align: left;

}

.pricing_features li {

	  padding: 0.6rem 0;
	color:       #555;
    border-bottom: 1px solid #f0f0f0;
     font-size: 0.95rem;}

.pricing_features li:last-child {
  border-bottom: none;
}


.testimonials_section {
  padding: 5rem 0;
       background-color  : #fff;
}

.testimonials_section h2 {
   font-size    :  2.5rem;
   text-align: center;
    margin-bottom: 3rem;
   color: #000;
}

.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial_card {
   background: #f8f9fa;
  border-radius     :    12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #d4af37;
  transition: all 0.3s ease;

}



.testimonial_card:hover

{
	  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);

}

.testimonial_content		{
    margin-bottom: 1.5rem;
}

.testimonial_content p {
             font-style: italic;
                    color: #555;
 font-size: 1rem;
        line-height    : 1.6;
     }

.testimonial_author {
   padding-top: 1rem;
   border-top: 1px solid #e0e0e0;
}

.testimonial_author p {
  margin: 0.3rem 0;
	font-size  :   0.95rem;
}

.testimonial_author p:first-child {
                    color: #000;
   font-weight: 600;
}

.testimonial_author p:last-child

{
       color   :       #999;
    font-size     :   0.85rem;
     }

.why_choose_section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
   color: #fff;
   padding: 5rem 0;
}

.why_choose_section h2 {
   font-size: 2.5rem;
  text-align: center;
	margin-bottom:  3rem;
}


.why_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.why_item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
               padding: 2rem;
      text-align  :    center;
    transition: all 0.3s ease;
}

.why_item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateY(-4px);
}

.why_number {
  font-size: 3rem;
  font-weight: 700;
    color    :     #d4af37;
   margin-bottom: 1rem;
}

.why_item h3 {
   font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.why_item p {
   color: #ccc;
   font-size    :   0.95rem;
 line-height: 1.6;
}

.cta_services 
 {
  background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
   color: #000;
    padding: 4rem 2rem;
  text-align: center;
}

.cta_services h2 {
	font-size :    2.2rem;
   margin-bottom :   1rem;
}

.cta_services p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.9;
}



.thankyou_section {
                    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  min-height: 80vh;
  display: flex;
          align-items: center;
	justify-content     :   center; 

}

.thankyou_content {
	 text-align: center;
					max-width: 600px;


}

.success_icon {
   margin-bottom: 2rem;
    display: flex;
   justify-content: center;
}

.success_icon svg {
    animation: scaleIn 0.6s ease;
       -moz-animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou_content h1 {
    font-size: 2.5rem;
  color: #000;
    margin-bottom :   1rem;
}

.thankyou_message {
  font-size: 1.2rem;
   color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thankyou_info {
  background: #fff;
    border-radius : 12px;
       padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thankyou_info h2 {
   font-size: 1.5rem;
  color: #000;
  margin-bottom :      1.5rem;
}



.next_steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
	text-align: center;
}

.step_number {
	display: inline-block;
   width: 50px;
   height: 50px;
  background-color: #d4af37;
  color :     #000;
    border-radius: 50%;
      line-height:50px;
    font-weight: 700;
   font-size:  1.5rem;
   margin-bottom: 1rem;
}

.step_content h3 {
   font-size: 1.1rem;
   color: #000;
   margin-bottom: 0.5rem;
	
}

.step_content p {
    color: #666;
    font-size     :   0.9rem;
} 

.contact_quick {
  background: #f0f0f0;
	border-radius: 12px;
    padding: 2rem;
   margin: 2rem 0;
}

.contact_quick h2 {
    color    :   #000;
  margin-bottom: 1rem;
  font-size     :  1.3rem;
}

.contact_quick p {
   color: #555; 

}

.contact_quick a {
   color: #d4af37;
	 font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_quick a:hover {
    color: #000;
}

.action_buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
	margin-top: 2rem;
}

.back_button,
.services_button {
    display: inline-block;
   padding: 1rem 2rem;
    border-radius: 6px;
  font-weight     :       600;
   transition: all 0.3s ease;
	 text-decoration   :  none;
  font-size: 1rem;
}

.back_button
	{
  color: #d4af37;
	  background-color: #000;
	   border: 2px solid #000;
}

.back_button:hover {
  background-color: #d4af37;
   color: #000;
}

.services_button {
       background-color: #d4af37;
  color: #000;
   border: 2px solid #d4af37;
}

.services_button:hover {
   background-color: #000;
    color: #d4af37;
}@media (max-width: 768px) {
    .hero_content_services h1 {
        font-size: 2rem;
    }

    .hero_subtitle_services {
        font-size: 1rem;
    }

    .service_detail_card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .service_detail_card.reverse {
        direction: ltr;
    }

    .service_detail_content {
        padding: 1.5rem;
    }

    .service_detail_content h3 {
        font-size: 1.3rem;
    }

    .services_detailed h2,
    .pricing_section h2,
    .testimonials_section h2 {
        font-size: 1.8rem;
    }

    .pricing_card.featured {
        transform: scale(1);
    }

    .why_grid {
        grid-template-columns: 1fr;
    }

    .thankyou_content h1 {
        font-size: 1.8rem;
    }

    .next_steps {
        grid-template-columns: 1fr;
    }

    .action_buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services_hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero_content_services h1 {
        font-size: 1.5rem;
    }

    .service_detail_image {
        height: 250px;
    }

    .thankyou_section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .success_icon svg {
        width: 60px;
        height: 60px;
    }
}.policy_section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  min-height: calc(100vh - 200px);
}

.policy_container {
  max-width: 800px;
  margin: 0 auto;
  text-align   :left;
}

.policy_container h1{
   font-size: 3rem;
  color: #000;
  margin-bottom: 2rem;
	font-weight: 700;
 text-align: center;
}

.policy_container h2 {
	  font-size: 1.8rem;
    color: #1a1a1a;
  margin-top: 2.5rem;
    margin-bottom: 1rem;
   font-weight   : 600;
   border-bottom    :     2px solid #d4af37;
   padding-bottom: 0.8rem;


}

.policy_container p  {
       color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size    :1.05rem;
}

.policy_container p strong {
     color: #000;
  font-weight: 600;
}

.policy_container h2:first-of-type {
   margin-top     :   0;
}
@media (max-width: 768px) {
    .policy_section {
        padding: 3rem 1.5rem;
    }

    .policy_container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy_container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policy_container p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy_section {
        padding: 2rem 1rem;
    }

    .policy_container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy_container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .policy_container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}
