* {
      margin: 0;
      padding: 0;
   box-sizing: border-box;


}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0369a1;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}  

.navigation-bar {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position :  sticky;
   top: 0;
    z-index: 1000;
}

.nav-container {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
   display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo-section {
	    flex-shrink: 0;
	}

.nav-logo-image {
    height : 94px;
    width: auto;
   display: block;
}

.nav-menu{
   display: flex;
    list-style: none;
   gap: 40px;
}

.nav-item {
   position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
   transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
	  position: absolute;
	  bottom: 0;
	  left: 0;
	    width: 0;
	  height: 2px;
	  background-color: var(--primary-color);
		transition :  width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-burger-btn {
  display: none;
    flex-direction: column;
  background: none;
  border: none;
   cursor: pointer;
	gap: 6px;
}

.burger-line {
	width: 28px;
   height: 3px;
  background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}@media (max-width: 768px) {
    .nav-burger-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 16px 20px;
    }

    .nav-burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translateY(14px);
    }

    .nav-burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }
}.hero-section {
    max-width: 1200px;
  margin: 60px auto 80px;
    padding: 0 20px;
    display: grid;
      grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items: center;
}

.hero-content {
        display: flex;
    flex-direction    : column;
   gap: 24px;
}

.hero-title {
  font-size: 48px;
       font-weight: 700;
   line-height: 1.2;
  color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
  color: var(--text-light);
  line-height  :   1.8;
}

.hero-cta {
   align-self   :        flex-start;
   padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
   text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.hero-cta:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);


}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hero-img {
    width: 100%;
    height: auto;
   display: block;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        margin: 40px auto 60px;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.value-proposition {
  background-color: var(--light-bg);
    padding     : 80px 20px;
}

.section-header {
   max-width: 1200px;
  margin: 0 auto 60px;
   text-align: center;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
   margin-bottom  : 16px;
  color: var(--text-dark); 
	
}

.section-header p {
	font-size :   18px;
  color: var(--text-light);

}

.value-grid {
	 max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.value-card {
  background: var(--white);
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
   display: flex;
    flex-direction: column;
   gap: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
               width: 60px;
	  height: 60px;
	  display: flex;
	    align-items: center;
	   justify-content: center;
	  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(3, 105, 161, 0.1));
	   border-radius: 12px;
}

.value-icon img {
   width  : 32px;
  height: 32px;
  filter: drop-shadow(0 0 4px rgba(30, 64, 175, 0.3));
}

.value-card h3 {
  font-size: 22px;
               font-weight: 600;
  color: var(--text-dark);
} 

.value-card p {
   font-size: 16px;
  color: var(--text-light);
   line-height: 1.7;
}

.coaching-process {


  max-width: 1200px;
   margin: 80px auto;
  padding: 0 20px;

}

.coaching-process h2 {
   font-size: 40px;
    font-weight: 700;
    text-align: center;
   margin-bottom: 60px;
  color: var(--text-dark);
} 

.process-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.process-step {
   display: flex;
   flex-direction: column;
    gap: 20px;
    position: relative;
}

.step-number {
   width: 50px;
  height: 50px;
   display: flex;
    align-items   :        center;
   justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
    font-size     :   24px;
  font-weight     :      700;
  border-radius:   50%;
}

.process-step h3 {
   font-size: 24px;
    font-weight: 600;
  color: var(--text-dark);
}

.process-step p  
  {
  font-size: 16px;
  color: var(--text-light);
    line-height :  1.7;
}

.process-step img {
  width  :  100%;
    height: 250px;
  object-fit: cover;
    border-radius: 8px;
}

.coaching-types {
  background: linear-gradient(135deg, var(--dark-bg), #1a2942);
       padding    : 80px 20px;
     color: var(--white);
}

.coaching-types h2 {
       font-size: 40px; 
   font-weight: 700; 
    text-align: center; 
	margin-bottom: 16px; 
  color: var(--white);}

.section-intro {
   text-align: center;
    font-size: 18px;
   color: #cbd5e1;
  max-width:      600px;
   margin: 0 auto 60px;
}

.coaching-cards {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.coaching-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
	 display: flex;
	 flex-direction: column;
   gap: 20px;
}

.coaching-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-color);
  transform: translateY(-8px);
}

.coaching-card h3 {
  font-size: 24px;
    font-weight: 600;
  color: var(--white);
}

.coaching-card p {
	color: #cbd5e1;
    line-height: 1.7;
    font-size: 15px;
}

.coaching-features {
    list-style: none;
        display    :    flex;
  flex-direction: column;
    gap :       12px;
    padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coaching-features li
{
   font-size: 14px;
  color: #cbd5e1;
  padding-left: 20px;
       position: relative;
}  

.coaching-features li::before {
  content: '✓';
    position: absolute;
  left: 0;
  color: var(--accent-color);
    font-weight:  700;
}

.strategic-roadmap {
   max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.strategic-roadmap h2 {
  font-size: 40px;
               font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.roadmap-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.roadmap-text {
   display: flex;
    flex-direction: column;
   gap: 20px;
}

.roadmap-text p {
    font-size: 16px;
  color: var(--text-light);
   line-height: 1.8;
}

.roadmap-image {
  width     :100%;
    height: auto;
    border-radius: 12px;
}@media (max-width: 768px) {
    .roadmap-content {
        grid-template-columns: 1fr;
    }
}.methodology-section {

	  background-color: var(--light-bg);
    padding: 80px 20px;
}

.methodology-section h2 {
    font-size: 40px;
   font-weight: 700;
	text-align: center;
  margin-bottom  :    16px;
  color: var(--text-dark);
}

.methodology-intro {
       text-align: center;
   font-size  : 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
     }

.methodology-blocks

{
    max-width: 1200px;
      margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.methodology-block {
  background: var(--white);
   padding: 35px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.methodology-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.methodology-block h3 {
  font-size: 20px;
  font-weight: 600;
   margin-bottom: 16px;
  color: var(--text-dark);
}

.methodology-block p	{


    font-size: 15px;
  color: var(--text-light);
   line-height  :  1.7;
     }

.market-analysis {
   max-width: 1200px;
    margin: 80px auto;
  padding     :       0 20px;
}

.market-analysis h2 {
    font-size: 40px;
  font-weight    :      700;
   margin-bottom    : 16px;
   text-align  :        center;
  color: var(--text-dark);
}

.analysis-intro {
  text-align    :  center;
    font-size: 18px;
  color: var(--text-light);
   max-width: 700px;
   margin: 0 auto 50px;
}

.analysis-content


{
   display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(3, 105, 161, 0.05));
   padding: 50px;
   border-radius: 12px;
  border: 1px solid var(--border-color);
}

.analysis-content p {
   font-size: 16px;
  color: var(--text-light);
  line-height     :    1.8;
	
}

.team-expertise {
  background-color: var(--light-bg);
 padding: 80px 20px;
}

.team-expertise h2 {
  font-size: 40px;
               font-weight: 700;
      text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.team-intro {

    text-align: center;
    font-size: 18px;
  color: var(--text-light);
   max-width: 700px;
   margin: 0 auto 50px;
	}

.team-description {

	   max-width: 900px;
    margin: 0 auto;
   display:    flex;
    flex-direction: column;
  gap: 20px;
}



.team-description p {
   font-size: 16px;
  color: var(--text-light);
    line-height:     1.8;
   text-align: center;
     }

.business-events {
    max-width: 1200px;
  margin: 80px auto;
   padding: 0 20px;
}

.business-events h2 {
    font-size: 40px; 
	 font-weight: 700; 
	  text-align: center; 
		 margin-bottom  :        16px; 
	  color: var(--text-dark);
}

.events-intro {
   text-align: center;
  font-size: 18px;
  color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.events-grid  {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card    {
  background: var(--white);
    padding   :     40px;
   border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.event-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
}

.event-card h3 {
    font-size: 22px;
   font-weight: 600;
  color: var(--text-dark);
   margin-bottom    : 16px;
}

.event-card p {
	font-size: 15px;
  color: var(--text-light);
   line-height: 1.7;
}

.success-stories {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   padding: 80px 20px;
  color: var(--white);
}
/* Utility classes */


	/* Cross-browser fix */

.success-stories h2 {
	 font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
  color: var(--white);
}



.stories-intro {
    text-align:       center;
   font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
    max-width    :    700px;
  margin: 0 auto 50px;
}

.stories-container {
      max-width: 1200px;
     margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
     }

.success-story {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 35px;
    border-radius: 8px; 

}

.success-story h3 {
   font-size: 22px;
	font-weight: 600;
    margin-bottom: 16px;
  color: var(--white);
}

.success-story p {
    font-size: 15px; 
  color: rgba(255, 255, 255, 0.85); 
    line-height: 1.7;
}
	/* Animation and transitions */
.investment-section {
   max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
          text-align: center;
}
	/* Experimental feature */
.investment-section h2 {
  font-size: 40px;
  font-weight: 700;
	 margin-bottom: 30px;
  color: var(--text-dark);
}

.investment-intro  
  {
   font-size: 18px;
  color: var(--text-light);
    margin-bottom: 24px;
}

.investment-text {
  font-size :  16px;
  color: var(--text-light);
  line-height: 1.8;
    margin-bottom  : 20px;
}

.cta-section {
  background: linear-gradient(135deg, #0369a1, #0284c7);
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
     max-width    :  800px;
   margin: 0 auto;
  color: var(--white);
	}

.cta-container h2 {
    font-size: 44px;
  font-weight: 700;
    margin-bottom: 16px;
  color: var(--white);

}

.cta-container p {
    font-size   :  18px;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
   display: inline-block;
 padding: 16px 40px;
  background-color: var(--accent-color);
  color: var(--dark-bg);
  text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
   font-size: 16px;
   transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.contact-section {
	max-width: 1200px;
    margin: 80px auto;
               padding: 0 20px;
}

.contact-container     {
 gap: 60px;
   display: grid;
    grid-template-columns: 2fr 1fr;
}

.contact-section h2 {
  font-size   :      40px;
  font-weight: 700;
  margin-bottom:  16px;
  color: var(--text-dark);
  grid-column: 1 / -1;
}

.contact-intro {

    font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
    grid-column: 1 / -1;

}

.contact-form {
  display: flex;
    flex-direction: column;
  gap: 24px;

}

.form-group {
	display: flex;
  flex-direction: column;
   gap: 8px;
}

.form-group label {
         font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
    padding: 12px 16px;
  border: 1px solid var(--border-color);
    border-radius: 6px;
   font-size  : 15px;
   font-family: inherit;
   transition   :all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {


  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);


}

.submit-button {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
    border   :       none;
  border-radius: 6px;
   font-weight    :   600;
   font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);


}

.contact-info		{
  display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
   font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
}

.info-block {
  padding: 20px;
  background-color: var(--light-bg);
   border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

/* Typography */

.info-block p {
   font-size: 15px;
  color: var(--text-light);
	line-height: 1.7;
}

.info-block strong
	{
	  color: var(--text-dark);
       font-weight     :        600;

}
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section h2 {
        grid-column: 1;
    }

    .contact-intro {
        grid-column: 1;
    }
}.footer-section {
  background-color: var(--dark-bg);
  color: var(--white);
    padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-container {

   max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
   margin-bottom: 40px;
     }

.footer-logo-section  
  {
   display: flex;
   align-items: flex-start;
}

.footer-logo
	{
       height: 136px;
   width: auto;
  filter: brightness(0) invert(1);}

/* TODO: optimize for mobile */


.footer-nav-section h4,
.footer-info-section h4 {
 font-size: 18px;

	    font-weight: 600;

	  margin-bottom: 20px;

	  color: var(--white);

}

.footer-nav-list {
    list-style: none;
        display: flex;
   flex-direction: column;
    gap    :       12px;
}

.footer-nav-list a {
    color  :#cbd5e1;
    text-decoration :       none;
    font-size: 15px;
   transition: color 0.3s ease;
}

.footer-nav-list a:hover {

	  color: var(--accent-color); 
	


}

.footer-info-section p {
    font-size: 15px;
   color: #cbd5e1;
   line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
   font-size: 14px;
  color: #94a3b8;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .coaching-process h2,
    .strategic-roadmap h2,
    .methodology-section h2,
    .market-analysis h2,
    .business-events h2,
    .success-stories h2,
    .team-expertise h2 {
        font-size: 32px;
    }

    .cta-container h2 {
        font-size: 32px;
    }

    .contact-section h2 {
        font-size: 32px;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
   padding: 100px 20px;
    text-align: center;
}

.services-hero-content {
  max-width: 900px;
	      margin: 0 auto;
}

.services-hero h1 {
     font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.services-hero p {
    font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.services-overview {
       padding: 80px 20px;
  background-color: var(--white);
}

.services-overview-container {
		max-width: 1200px;
   margin   :   0 auto;

}

.services-overview h2 {
  font-size: 40px;
 font-weight: 700;
  text-align: center;
   margin-bottom: 20px;
  color: var(--text-dark);
}

.overview-intro {

    text-align: center;
   font-size: 18px;
  color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
   line-height    :      1.8;
}

.services-grid-main {
  display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.service-main-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
   display: flex;
	flex-direction: column;}

.service-main-card:hover 
 {
  border-color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.15);
  transform: translateY(-8px);
}

.service-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.service-card-image img{
	  width: 100%;

	          height: 100%;

	    object-fit: cover;

	       transition: transform 0.3s ease;}

.service-main-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-main-card h3 {
      font-size    :    24px;
   font-weight: 700;
  color: var(--text-dark);
   padding: 25px 25px 0;
}

.service-main-card > p {

    font-size     :      15px;

  color: var(--text-light);

   padding: 15px 25px;

         line-height: 1.7;

  flex-grow: 1;
	}

.service-features {
    list-style: none;
    padding: 0 25px;
  margin-bottom: 25px;
}

.service-features li {
   font-size: 14px;
  color: var(--text-light);
   padding: 8px 0 8px 24px;
        position: relative;
      line-height: 1.6;
}

.service-features li::before {
  content: '✓';
    position: absolute;
   left: 0;
  color: var(--success);
  font-weight: 700;
	font-size: 16px;
}

.service-price {
  padding: 0 25px 25px;
 display: flex;
  align-items: baseline;
   gap: 10px;
}

.price-label {
	 font-size: 14px;
  color: var(--text-light);


}

.price-amount {
  font-size: 28px;
   font-weight : 700;
  color: var(--primary-color);
}

.price-unit {
    font-size: 14px;
  color: var(--text-light);
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
    }
}.services-detailed {
  background-color: var(--light-bg);
    padding: 80px 20px;
}

.services-detailed-container 
 {
               max-width: 1200px;
  margin: 0 auto;
}

.services-detailed h2

{
  font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
  color: var(--text-dark);


}

.detailed-service {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items  :       center;
  margin-bottom: 60px;
  background: var(--white);
    padding: 50px;
  border-radius    :    12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.detailed-service.alt-direction {
   grid-template-columns: 1fr 1fr;
}

.detailed-service.alt-direction .detailed-image {
      order: -1;
}



.detailed-content h3 {

   font-size: 28px;
    font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
     }

.detailed-content p {
	font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
    margin-bottom: 16px;
}

.detailed-image img {
   width: 100%;
               height: auto;
	border-radius: 8px;
}@media (max-width: 768px) {
    .detailed-service {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .detailed-service.alt-direction .detailed-image {
        order: 0;
    }
}.services-packages   {
   padding   :      80px 20px;
  background-color: var(--white);
}

.services-packages h2 {
    font-size: 40px;
  font-weight: 700;
	 text-align: center;
    margin-bottom   :    16px;
  color: var(--text-dark);
}

.packages-intro {
    text-align: center;
    font-size: 18px;
  color: var(--text-light);
	max-width: 700px;
   margin: 0 auto 60px;
}

.packages-grid {
   max-width: 1200px;
         margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
               gap: 30px;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--border-color);
    border-radius :    12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
   position: relative; 
	
}

.package-card.professional {
  border-color: var(--primary-color);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
}

.package-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.package-card.professional:hover {
  transform: scale(1.04) translateY(-8px);
}

.package-card h3 {

  font-size: 24px;
   font-weight: 700;
  color: var(--text-dark);

}

.package-description {
   font-size: 15px;
  color: var(--text-light);
    font-style:      italic;
}

.package-content {
  list-style: none;
    display    :        flex;
   flex-direction: column;
  gap: 12px;
} 

.package-content li {

    font-size: 15px;
  color: var(--text-light);
   padding-left: 24px;
   position: relative;
    line-height: 1.6;


}

.package-content li::before {
  content: '✓';
   position: absolute;
   left: 0;
  color: var(--success);
   font-weight     :  700;
  font-size: 16px;
}

.package-price {
   padding-top: 20px;
  border-top: 1px solid var(--border-color);
   display: flex;
   justify-content: center;
  align-items: center;
	gap: 8px;
}

.package-price .price {
   font-size: 32px;
    font-weight: 700;
  color: var(--primary-color);
}

.package-price .duration {

	   font-size: 14px;
  color: var(--text-light);


}

.package-cta {
   padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
    text-decoration: none;
	border-radius: 6px;
       font-weight: 600;
  font-size: 15px;
  text-align :      center;
 transition: all 0.3s ease;
}

.package-cta:hover {
     transform: translateY(-2px); 
	  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);


}

.services-faq {
  background-color: var(--light-bg);
  padding: 80px 20px;
}

.faq-container {
   max-width: 1000px;
  margin: 0 auto;
}

.faq-container h2 
 {
  font-size: 40px;
    font-weight: 700;
   text-align    :center;
    margin-bottom: 16px;
  color: var(--text-dark);
}  

.faq-intro {
   text-align: center;
   font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.faq-item {
  background: var(--white);
  padding: 30px;
    border-radius: 8px;
  border-left: 4px solid var(--primary-color);
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(6px);
}

.faq-item h3 {
    font-size: 18px; 
    font-weight: 600; 
  color: var(--text-dark); 
          margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
  color: var(--text-light);
	line-height: 1.7; 
	
}

.services-cta {
  background: linear-gradient(135deg, var(--secondary-color), #16a34a);
  padding: 80px 20px;
   text-align: center;
}

.services-cta-content	{
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.services-cta-content h2 {
   font-size: 44px;
   font-weight: 700;
   margin-bottom: 16px;
  color: var(--white);
}

.services-cta-content p {
    font-size: 18px; 
	  color: rgba(255, 255, 255, 0.9); 
	          margin-bottom: 30px;
}

.services-cta-button {
  display: inline-block;
    padding: 16px 40px;
  background-color: var(--accent-color);
  color: var(--dark-bg);
  text-decoration: none;
    border-radius: 8px;
   font-weight: 700;
   font-size: 16px;
  transition: all 0.3s ease;
}

.services-cta-button:hover {
  transform: translateY(-3px); 
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.thankyou-container {
     max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.thankyou-content {
  display: flex; 
    flex-direction: column; 
	 gap: 30px;
}

.success-icon {

   width  :  120px;
   height: 120px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(3, 105, 161, 0.1));
   border-radius    :      50%;
  display: flex;
               align-items: center;
  justify-content: center;
    margin: 0 auto;


}

.success-icon svg {


   width: 80px;
  height: 80px;
     }

.thankyou-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-dark);
   text-align: center;
}

.thankyou-message {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(3, 105, 161, 0.05));
   padding: 30px;
    border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.thankyou-message p		{
    font-size: 16px;
  color: var(--text-light);
    line-height  :      1.8;
    margin-bottom: 12px;
}

.thankyou-message p:last-child {
                    margin-bottom: 0;
}

.inquiry-summary {
  background: var(--light-bg);
  padding: 30px;
         border-radius: 8px;
}

.inquiry-summary h3 {
   font-size  :        18px;
   font-weight: 600;
  color: var(--text-dark);
  margin-bottom     :   20px;
}

.summary-details {
  gap: 15px;
    display: flex;
   flex-direction: column;
}

.summary-item {
	  display: grid;
  grid-template-columns: 150px 1fr;
   gap: 20px;
   padding: 12px;
  background: var(--white);
    border-radius: 6px;
	}

.summary-label {
		font-weight: 600;
  color: var(--text-dark);
       font-size: 14px;}

.summary-value{
   font-size: 14px;
  color: var(--text-light);
}

.next-steps {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(245, 158, 11, 0.05));
	padding  :   30px;
   border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.next-steps h3 {
    font-size: 18px;
      font-weight: 600;
     color: var(--text-dark);
       margin-bottom: 20px;
}

.steps-list {
   list-style: none;
  counter-reset: step;
   display: flex;
    flex-direction: column;
   gap: 12px;
}

.steps-list li {
   counter-increment: step;
   padding-left: 40px;
  position: relative;
  font-size: 15px;
  color: var(--text-light);
   line-height: 1.6;
}

.steps-list li::before {
  content: counter(step);
		position: absolute;
	  left: 0;
	    width: 28px;
	  height: 28px;
	  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	  color: var(--white);
	    border-radius: 50%;
	  display: flex;
	    align-items: center;
	    justify-content: center;
	  font-weight: 700;
	  font-size: 14px;
}


.while-waiting {

  background: var(--white);
   padding: 30px;
  border-radius: 8px;
  border: 2px solid var(--border-color);}

.while-waiting h3 {
          font-size: 18px;
   font-weight: 600;
  color: var(--text-dark);
    margin-bottom: 20px;
}

.waiting-suggestions {

	    display: flex;
	flex-direction: column;
         gap: 12px;
	}

.suggestion-link
	{
  display: inline-block;
	 padding    :      12px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
   text-decoration: none;
    border-radius: 6px;
   font-weight: 500;
  font-size: 14px;
  text-align: center;
    transition: all 0.3s ease;
}

.suggestion-link:hover {
  transform: translateY(-2px);

	  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.contact-support {
  background: linear-gradient(135deg, var(--secondary-color), #16a34a);
  color: var(--white);
  padding: 30px;
    border-radius: 8px;
   text-align: center;
}

.contact-support p {
  font-size: 15px;
   margin-bottom  :     12px;
}

.contact-support p:last-child {
    margin-bottom: 0;
}

.phone-number {
   font-size: 24px;
  font-weight   :        700;
  color: var(--accent-color);
}

.thankyou-decoration {
	border-radius: 12px;
   overflow: hidden;
}

.decoration-image {
    width: 100%;
  height: auto;
 border-radius: 12px;
}@media (max-width: 768px) {
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thankyou-content h1 {
        font-size: 32px;
    }

    .summary-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-overview h2 {
        font-size: 32px;
    }

    .services-detailed h2 {
        font-size: 32px;
    }

    .services-packages h2 {
        font-size: 32px;
    }

    .faq-container h2 {
        font-size: 32px;
    }

    .services-cta-content h2 {
        font-size: 32px;
    }
}.policy-section {
    padding  :  80px 20px;

  background: var(--light-bg);

  min-height: calc(100vh - 400px);
}

.policy-container {
  max-width: 900px;
   margin: 0 auto;
  text-align    :    left;
}

.policy-container h1 {
  font-size   :  48px;
   font-weight: 700;
  color: var(--text-dark);
    margin-bottom: 40px;
   text-align: center;
}

.policy-container h2 {
	font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
               margin-top: 40px;
    margin-bottom  :       20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-color);
}

.policy-container h2:first-of-type {

	    margin-top: 0;
}

.policy-container p     {
  color: var(--text-light);
	margin-bottom :        20px;
    line-height: 1.8;
   font-size: 16px;
    text-align: justify;
}

.policy-container p:last-child {
    margin-bottom  :  0; 

}

.policy-container a {
  color: var(--primary-color);
     text-decoration   :  none;
     transition     :       color 0.3s ease;
}

/* Cross-browser fix */


.policy-container a:hover {
  color: var(--secondary-color); 
	  text-decoration: underline;
}
@media (max-width: 768px) {
    .policy-section {
        padding: 60px 15px;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 16px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 12px;
    }

    .policy-container h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
}