*
{
	margin: 0;
     padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --secondary-accent: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
   scroll-behavior     :      smooth;
}

body  
  {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--white);
   line-height: 1.6;
	}

/* Framework override */

.navbar {
  background-color: var(--primary-color);
       padding: 1rem 0;
   	position: sticky;
      top   :     0;
      z-index     :      1000;
     box-shadow: var(--shadow);
}

.nav-container {
    max-width :      1200px;
   margin: 0 auto;
    padding: 0 2rem;
   display: flex;
   justify-content: space-between;
  align-items: center;
}

/* Temporary fix */

.nav-logo {
  flex-shrink     :0;
}

/* State modifiers */


/* State modifiers */
.logo-img   {
   height: 50px;
    width: auto;
}

.nav-menu

{

       display: flex;
   gap: 2rem;
    align-items: center;
	}

/* Browser compatibility */
.nav-link {
  color: var(--white);
  text-decoration   :     none;
    font-weight: 500;
  transition: var(--transition);
        padding: 0.5rem 1rem;
}

.nav-link:hover {
  color: var(--accent-color);
}

.burger-menu {
	    cursor: pointer; 
  flex-direction: column; 
  display   :  none; 
    gap :       6px;}



.burger-line {
    width: 25px;
   height: 3px;
  background-color: var(--white);
  transition: var(--transition);
    border-radius   :  2px;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: var(--white);
 padding: 6rem 2rem;
	 text-align   :       center;
}

.hero-content
	{
                    max-width  :   800px;
   margin: 0 auto;
}

.hero h1 {
		font-size: 3rem;
    margin-bottom: 1.5rem;
          font-weight     :700;
}

/* Utility classes */

.hero-subtitle {
   font-size: 1.2rem;
			margin-bottom: 2rem;
    opacity: 0.95;
  line-height: 1.8;
}

.cta-button {
   display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
    padding     :     1rem 2.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}
	/* Debug styles */




.cta-button:hover {


        background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
	}

.features    {
   padding: 5rem 2rem;
  background-color: var(--light-bg);
	}

.features-grid {


   max-width     :    1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
	}

.feature-card


{


  background-color: var(--white);
	 padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
     }



.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h3
{
  color: var(--primary-color);
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

.feature-card p {
  color: #555;
	 font-size: 0.95rem;
}

/* Utility classes */


	/* NOTE: keep for legacy support */


.gallery {
    padding: 5rem 2rem;
    max-width: 1200px;
  margin    :      0 auto;
}

/* Custom modifications */



/* Responsive design */
.gallery h2 {
  text-align: center;
   font-size    :     2.5rem;
    margin-bottom: 3rem;
  color: var(--primary-color);
}

.gallery-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}  

.gallery-item {
   overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img


{
    width: 100%;
  height: 250px;
   object-fit: cover;
   display: block; 

}
/* Performance critical */



/* Debug styles */


.services-preview {
	   padding:   5rem 2rem;
  background-color: var(--light-bg);
}

.services-preview h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom:3rem;
  color: var(--primary-color);
}

.services-list {
    max-width: 1000px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.service-item

{
  background-color: var(--white);
    padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-color);
  transition: var(--transition);
}

.service-item:hover {
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.service-item h3 {
  color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cta-section {
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
  color: var(--white);
  text-align  :       center;
}

.cta-box


{
   max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: 1rem;
   font-size    :2.5rem;
}
/* Framework override */

	/* Responsive design */

	/* Utility classes */


.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button-large {
	display: inline-block;
  background-color: var(--secondary-accent);
  color: var(--white);
   padding: 1.2rem 3rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);


}

/* Typography */

.cta-button-large:hover {
	       background-color     :     #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);}


.contact-section {
  padding: 5rem 2rem;
   max-width: 700px;
    margin: 0 auto;
}  

.contact-section h2 {
   text-align: center;
  font-size   :   2.2rem;
   margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-form {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	  width: 100%;
	padding :    1rem;
    border: 2px solid #bdc3c7;
   border-radius   :  8px;
    font-family: inherit;
       font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus     {
	outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
  width    : 100%;
    padding: 1.2rem;
  background-color: var(--primary-color);
  color: var(--white);
   border: none;
  border-radius: 8px;
	 font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.submit-btn:hover     {
  background-color    :       #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.footer {
  background-color: var(--primary-color);
  color: var(--white);
   padding: 3rem 2rem 1rem;
}

.footer-container     {
         max-width:  1200px;
	margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  margin-bottom :2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  color: var(--accent-color);
}

.footer-logo {
   height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section ul {
 list-style: none;
}

.footer-section li {
	  margin-bottom: 0.7rem;


}

/* State modifiers */

.footer-section a {
	 color: #ecf0f1;
	 text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-color);


}

.footer-section p {

  margin-bottom: 0.7rem;
  color: #ecf0f1;
  font-size: 0.95rem;


}

.footer-bottom {
  text-align: center;
      padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	 color: #bdc3c7;
   font-size: 0.9rem;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .gallery h2,
    .services-preview h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .gallery-grid,
    .services-list,
    .features-grid {
        grid-template-columns: 1fr;
    }
}.services-hero
{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem;
        text-align: center;

}

.hero-content-services {
  max-width: 800px;
	margin :        0 auto;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
    font-weight  :     700;
}

.hero-subtitle-services {
    font-size   :   1.2rem;
    opacity: 0.95;
       line-height: 1.8;
}

.services-detailed {

	 padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;

}

.services-container {
    display: flex;
   flex-direction: column;
  gap: 3rem;
}

.service-card-large {

   display: grid;
	grid-template-columns    :1fr 1fr;
   gap: 3rem;
   align-items  :     center;
   background-color: #f8f9fa;
    padding: 2.5rem;
   border-radius     : 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
     }

.service-card-large:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card-large:nth-child(even) {
    grid-template-columns: 1fr 1fr; 

} 

.service-card-large:nth-child(even) .service-image {
	order: 2;
}

.service-card-large:nth-child(even) .service-content {
    order: 1;
	}

.service-image {
   overflow: hidden;
  border-radius :    12px;
  height: 350px;

}

.service-image img {
	width: 100%;
    height :        100%;
  object-fit: cover;
}

.service-content h2 {
  font-size: 2rem;
    color: #2c3e50;
    margin-bottom     :  1.5rem;
}

.service-content p {


    line-height    :1.8;
   color: #555;
   margin-bottom: 1.5rem;
   font-size: 1rem;
}

.service-features    {
   list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
  padding-left: 1.5rem;
          position  :  relative;
    color: #555;
}

.service-features li:before {
	  content: "✓";
    position: absolute;
  left: 0;
                    color: #3498db;
   font-weight: bold;
   font-size: 1.2rem;

}

.service-price {
  font-size    :1.3rem;
    font-weight: 600;
    color: #3498db;
    border-top: 2px solid #ecf0f1;
	padding-top: 1.5rem; 

}

.pricing-comparison {

   padding: 5rem 2rem;
  background-color  :      #ecf0f1;
     }

.pricing-comparison h2 {
   text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.pricing-table
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
   max-width: 1200px;
	margin: 0 auto;
}

.price-column {
   background-color: #ffffff;
        padding: 2.5rem;
    border-radius: 12px;
  text-align   :   center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition     :       all 0.3s ease;
  border-top: 4px solid #e0e0e0;
}

.price-column:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-column.featured {

    border-top-color: #3498db;
  transform: scale(1.05);}

.price-column.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
	margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
    font-weight: 700;
  color    :      #3498db;
  margin-bottom: 1.5rem;
}

.price-list {
    list-style: none;
                    margin-bottom: 2rem;
  text-align: left;
}

.price-list li {

	    padding: 0.7rem 0;
   border-bottom: 1px solid #ecf0f1;
  color: #555;

}

.price-list li:last-child {
      border-bottom: none;


}

.pricing-btn {
      display: inline-block;
    padding: 1rem 2rem;
  background-color: #95a5a6;
       color: #ffffff;
      text-decoration:      none;
    border-radius: 8px;
        font-weight: 600;
	transition: all 0.3s ease;
   width: 100%;

} 

.pricing-btn:hover {
  transform: translateY(-2px);
	background-color: #7f8c8d;
}

.pricing-btn.featured-btn {
  background-color: #3498db;
}

.pricing-btn.featured-btn:hover	{
    background-color: #2980b9;
}



.faq-section {
	padding: 5rem 2rem;
   max-width     :        900px;
  margin: 0 auto;
} 

.faq-section h2		{
  text-align  :    center;
    font-size: 2.5rem;
	 color: #2c3e50;
    margin-bottom: 3rem;
}

.faq-container {

    display: grid;
   gap     :1.5rem;
}

.faq-item {
   background-color:       #f8f9fa;
        padding: 2rem;
	 border-radius     : 12px;
   border-left: 4px solid #3498db;
   transition: all 0.3s ease;
}

.faq-item:hover{
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.faq-question {
	font-size :   1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
       cursor: pointer;
  font-weight: 600;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
  font-size: 0.95rem;
}

.cta-section-services {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
   padding: 4rem 2rem;
    text-align: center;
}

.cta-section-services h2  
  {
	  font-size: 2.5rem;
    margin-bottom: 1rem;
	}  

.cta-section-services p {
    font-size: 1.1rem;

    margin-bottom: 2rem;
}

.cta-button-services {
	  display: inline-block;
    background-color: #e74c3c;
	color: #ffffff;
    padding     :        1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
		font-size: 1.1rem;
	 transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
} 

.cta-button-services:hover {
    background-color    :  #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.thank-you-section {


  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    min-height:        80vh;
  display: flex;
  align-items    :   center;
   justify-content: center;

}

.thank-you-container {

	   max-width     :       700px;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align    :center;}

.thank-you-icon {
    color: #2ecc71;
   margin-bottom: 1.5rem;
  animation: scaleIn 0.6s ease-out;
}

.thank-you-icon svg{
   animation    :       slideDown 0.6s ease-out; 

}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thank-you-container h1 {

	  font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight: 700;
	
     }

.thank-you-subtitle {
  font-size: 1.3rem;
	color   :       #3498db;
    margin-bottom: 2rem;
}

.thank-you-message {
    background-color: #f0f8ff;
    padding: 1.5rem;
   border-radius: 8px;
	margin-bottom:     2.5rem;
   border-left     : 4px solid #3498db;
}

.thank-you-message p {
  color: #555;
    line-height: 1.8;
   font-size: 1rem;
}



.thank-you-steps h2 {
  font-size:     1.8rem;
    color: #2c3e50;
       margin-bottom   :   2rem;
    margin-top :        2rem;
}

.steps-container  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
 gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step {
    background-color: #f8f9fa;
	padding: 1.5rem;
    border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
   background-color    : #ecf0f1;
  transform: translateY(-5px);


}

.step-number {
	display: flex;
          align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #3498db;
   color: #ffffff;
   border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
   margin: 0 auto 1rem;
}

.step h3 {
  color   :     #2c3e50;
  font-size: 1.1rem;
  margin-bottom :        0.5rem;
}

.step p

{
   color: #777;
   font-size: 0.9rem;
}

.thank-you-links {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary

{
	display: inline-block;
    padding: 1rem 2rem;
   border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
	background-color  :        #3498db;
   color: #ffffff;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 
	
}


.btn-primary:hover {
   background-color: #2980b9;
  transform: translateY(-2px);
}

.btn-secondary


{
    background-color: #ecf0f1; 
   color: #2c3e50; 
  border: 2px solid #3498db;
}

.btn-secondary:hover {
   background-color: #3498db;
    color: #ffffff;
}

.contact-info {
     background-color: #f8f9fa;
	-moz-border-radius: 8px;
	padding: 1.5rem;
  border-radius: 8px;
   margin-top     : 2rem;
}

.contact-info p {
   color   :#555;

	    font-size: 0.95rem;

	 margin-bottom: 0.5rem;
}

.contact-phone {
    font-size: 1.3rem;
   font-weight: 600;
   color: #3498db;
    margin: 1rem 0 0.5rem;
}

.contact-hours {
  color: #777;
   font-size :0.9rem;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-card-large {
        grid-template-columns: 1fr;
    }

    .service-card-large:nth-child(even) .service-image {
        order: 1;
    }

    .service-card-large:nth-child(even) .service-content {
        order: 2;
    }

    .service-image {
        height: 250px;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .price-column.featured {
        transform: scale(1);
    }

    .price-column.featured:hover {
        transform: translateY(-10px);
    }

    .thank-you-links {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .thank-you-container {
        padding: 2rem;
    }

    .thank-you-container h1 {
        font-size: 2rem;
    }

    .pricing-comparison h2,
    .faq-section h2,
    .cta-section-services h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-card-large {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 2rem;
    }

    .thank-you-subtitle {
        font-size: 1.1rem;
    }
}.policySection {
   background: #f8f9fa;
	 padding: 80px 2rem;

}

.policyContainer {
         text-align: left;
   margin :     0 auto;
  max-width :        900px;
}

.policyContainer h1 {
  font-size: 3rem;
   color     :     #2c3e50;
	 margin-bottom  :    2rem;
    font-weight: 700;
 border-bottom: 3px solid #3498db;
        padding-bottom: 1rem;


}

.policyContainer h2 {
   font-size: 1.8rem;
  color    :  #2c3e50;
    margin-bottom     :        1.2rem;
  margin-top: 2rem;
       font-weight: 600;
}

.policyContainer p {
   color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
    font-size :      1rem;
   text-align: justify;
}

.policyContainer p:first-of-type     {
                    font-size: 1.1rem;
   color: #666;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 800px;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
}