/*   
	Theme Name:        SlickFloorPlan
	Theme URI:         https://slickfloorplan.com
	Description:       Professional Interactive Floor Plan Builder for Real Estate.
	Author:            Salman Tanvir
	Author URI:        https://salmantanvir.work
	Version:           1.0.0
	Requires at least: 5.0
	Tested up to:      6.4
	License:           GNU General Public License v3 or later
	License URI:       http://www.gnu.org/licenses/gpl-3.0.html
	Tags:              real-estate, interactive-maps, floor-plans
	Text Domain:       slickfloorplan
*/
/* --- Variables --- */
/* --- Base --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #36424D;
  background-color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #261008;
  /* Variable font settings for Google Sans Flex */
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 0;
}

p,
span,
strong,
li {
  font-family: "Lato", sans-serif;
}

a {
  color: #03A63C;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* --- Grid Compatibility --- */
.container {
  max-width: 1240px;
}

/* --- Utility Classes --- */
.bg-light {
  background-color: #f8fbf9;
}

.muted {
  color: #6D8194;
}

.ml-1 {
  margin-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

/* --- Typography Scaling --- */
.display-1 {
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 span {
  color: #03A63C;
}

.subheadline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #6D8194;
  font-size: 0.875rem;
}

.lead {
  font-size: 1.25rem;
  color: #546373;
}

/* --- Buttons --- */
.btn-primary,
.btn-secondary,
.btn-outline,
.tml-button,
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  padding: 7.5px 15px;
  border-radius: 10px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  justify-content: flex-start;
  border: none;
  min-height: 44px;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}

.btn-primary,
.tml-button,
.wpcf7-submit {
  background-color: #84d904;
  color: #fff;
}
.btn-primary:hover,
.tml-button:hover,
.wpcf7-submit:hover {
  background-color: rgb(116.7692307692, 191.9615384615, 3.5384615385);
}

.btn-secondary {
  background-color: #EFF5FA;
  color: #36404A;
}
.btn-secondary:hover {
  background-color: rgb(219.5714285714, 232.8571428571, 243.9285714286);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #D9D9D9;
  color: #36424D;
}
.btn-outline:hover {
  border-color: #03A63C;
  color: #03A63C;
}

/* --- Sections --- */
.hero {
  overflow: hidden;
}
.hero .hero-preview-box {
  border-radius: 20px;
}
.hero .hero-preview-box img {
  width: 100%;
  height: auto;
}
.hero .hero-preview-box .preview-placeholder {
  color: #FFFFFF;
  text-align: center;
}
.hero .hero-preview-box .preview-placeholder i {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  color: #84D904;
}

.problem-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid rgba(217, 217, 217, 0.3);
  transition: all 0.3s ease;
}
.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.problem-card p {
  font-size: 0.95rem;
  color: #546373;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step .step-number {
  width: 50px;
  height: 50px;
  background-color: #84D904;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 900;
  font-size: 1.5rem;
}

.pricing-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  text-align: center;
  transition: all 0.3s ease;
}
.pricing-card .plan-name {
  font-weight: 700;
  color: #6D8194;
  text-transform: uppercase;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  margin: 1.5rem 0;
  color: #261008;
}
.pricing-card .price span {
  font-size: 1rem;
  color: #6D8194;
}
.pricing-card.featured {
  border-color: #03A63C;
  box-shadow: 0 20px 50px rgba(3, 166, 60, 0.1);
  transform: scale(1.05);
  z-index: 2;
}
.pricing-card:hover {
  transform: translateY(-10px);
}

.feature-list {
  list-style: none;
}
.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.feature-list li i {
  color: #84D904;
}

/* Responsive */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.75rem;
  }
  .pl-2 {
    padding-left: 15px;
  }
}
/* Helper Classes */
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* --- Header & Nav --- */
.site-header {
  margin-top: 15px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.logo h1 {
  font-size: 1.6rem;
  margin: 0;
}
.logo h1 a {
  color: #261008;
}
.logo h1 span {
  color: #03A63C;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #546373;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a:hover {
  color: #03A63C;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
/* --- Global Inputs --- */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
input[type=url],
input[type=date],
input[type=time],
input[type=datetime-local],
textarea,
select {
  font-family: sans-serif;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #6D8194;
  padding: 7.5px 15px;
  font-weight: normal;
  font-size: 13px;
  text-align: left;
  color: #36404a;
  outline: none;
  transition: border-color 0.2s ease;
  min-height: 44px;
}
input[type=text]:hover, input[type=text]:focus, input[type=text]:active,
input[type=email]:hover,
input[type=email]:focus,
input[type=email]:active,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=tel]:active,
input[type=number]:hover,
input[type=number]:focus,
input[type=number]:active,
input[type=password]:hover,
input[type=password]:focus,
input[type=password]:active,
input[type=search]:hover,
input[type=search]:focus,
input[type=search]:active,
input[type=url]:hover,
input[type=url]:focus,
input[type=url]:active,
input[type=date]:hover,
input[type=date]:focus,
input[type=date]:active,
input[type=time]:hover,
input[type=time]:focus,
input[type=time]:active,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active {
  border-color: #84D904 !important;
}
input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus, input[type=text]:-webkit-autofill:active,
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill:active,
input[type=tel]:-webkit-autofill,
input[type=tel]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill:active,
input[type=number]:-webkit-autofill,
input[type=number]:-webkit-autofill:hover,
input[type=number]:-webkit-autofill:focus,
input[type=number]:-webkit-autofill:active,
input[type=password]:-webkit-autofill,
input[type=password]:-webkit-autofill:hover,
input[type=password]:-webkit-autofill:focus,
input[type=password]:-webkit-autofill:active,
input[type=search]:-webkit-autofill,
input[type=search]:-webkit-autofill:hover,
input[type=search]:-webkit-autofill:focus,
input[type=search]:-webkit-autofill:active,
input[type=url]:-webkit-autofill,
input[type=url]:-webkit-autofill:hover,
input[type=url]:-webkit-autofill:focus,
input[type=url]:-webkit-autofill:active,
input[type=date]:-webkit-autofill,
input[type=date]:-webkit-autofill:hover,
input[type=date]:-webkit-autofill:focus,
input[type=date]:-webkit-autofill:active,
input[type=time]:-webkit-autofill,
input[type=time]:-webkit-autofill:hover,
input[type=time]:-webkit-autofill:focus,
input[type=time]:-webkit-autofill:active,
input[type=datetime-local]:-webkit-autofill,
input[type=datetime-local]:-webkit-autofill:hover,
input[type=datetime-local]:-webkit-autofill:focus,
input[type=datetime-local]:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #36404a !important;
}

/* --- Custom Checkbox & Radio --- */
.custom-control {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Hide default */
}
.custom-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-control {
  /* Create custom indicator */
}
.custom-control .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #EFF5FA;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.custom-control .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-control {
  /* Radio adjustment */
}
.custom-control input[type=radio] ~ .checkmark {
  border-radius: 50%;
}
.custom-control {
  /* Hover effect */
}
.custom-control:hover input ~ .checkmark {
  background-color: rgb(219.5714285714, 232.8571428571, 243.9285714286);
}
.custom-control {
  /* Checked state */
}
.custom-control input:checked ~ .checkmark {
  background-color: #84D904;
}
.custom-control {
  /* Show indicator when checked */
}
.custom-control input:checked ~ .checkmark:after {
  display: block;
}
.custom-control {
  /* Checkbox indicator (checkmark) */
}
.custom-control input[type=checkbox] ~ .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.custom-control {
  /* Radio indicator (dot) */
}
.custom-control input[type=radio] ~ .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer .footer-links {
  margin-top: 10px;
  font-size: 0.85rem;
}
.footer .footer-links a {
  color: #546373;
}
.footer .footer-links a:hover {
  color: #84D904;
}
.footer .footer-links .separator {
  margin: 0 10px;
  color: #ddd;
}

/* --- FAQ Section --- */
.faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.faq .faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #261008;
  line-height: 1.4;
}
.faq .faq-item p {
  font-size: 0.95rem;
  color: #546373;
  line-height: 1.6;
}

/* --- Legal Content --- */
.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #261008;
}
.legal-content p {
  margin-bottom: 15px;
  color: #546373;
}
.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}
.legal-content ul li {
  margin-bottom: 8px;
  color: #546373;
}

/* --- Contact Form 7 Styles --- */
.wpcf7 .wpcf7-form-control {
  width: 100%;
  margin-bottom: 15px;
}
.wpcf7 .wpcf7-submit {
  background-color: #84d904;
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 7.5px 40px;
  border-radius: 10px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  justify-content: center;
  border: none;
  min-height: 44px;
  transition: all 0.2s ease;
  text-align: center;
}
.wpcf7 .wpcf7-submit:hover {
  background-color: rgb(116.7692307692, 191.9615384615, 3.5384615385);
}
.wpcf7 .wpcf7-response-output {
  border-radius: 10px !important;
  margin: 20px 0 0 !important;
  padding: 15px !important;
  font-size: 14px;
  border: 1px solid transparent !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ff4d4d;
  margin-top: -10px;
  margin-bottom: 15px;
}
.wpcf7 .wpcf7-validation-errors {
  border-color: #ff4d4d !important;
  color: #ff4d4d;
  background: #fff5f5;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #84D904 !important;
  color: #84D904;
  background: #f4fff4;
}

.leaflet-pane > svg path {
  fill: #84D904 !important;
  stroke: #84D904 !important;
}

.feature-preview .preview-box img {
  width: 100%;
  height: auto;
}

.wpcf7-form.init {
  width: 375px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */