/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6396e0;
    --secondary-color: #5ee03e;
    --tertiary-color: #f39c12;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex {
    display: flex;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

h1 { font-size: 3.3rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.3rem; }

p, article ul, article ol  {
    margin-bottom: 30px;
    line-height: 1.8;
}

p a {
    color: var(--secondary-color);
}

a {
    text-decoration:none;
}
strong {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a87d4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 150, 224, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 150, 224, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

/* Header */
#header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header img.logo-img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background:url("../imgs/menu-open.svg") no-repeat center/cover;
    width:25px;
    height:25px;
    border:none;
}
.nav-toggle.active {
    background:url("../imgs/menu-close.svg") no-repeat center/cover;
}

/* removed */
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.highlight {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
}

/* Story Section */
.story {
    background: white;
    position: relative;
    z-index: 2;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    width:100%;
    height:auto;
    border-radius:30px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Brands Section */
.brands {
    background: #f8f9fa;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.brand-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 180px;
    flex-shrink: 0;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

/* Why Us Section */
.why-us {
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-item h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-item p {
    color: #666;
    margin: 0;
}

/* Appliance Types Section */
.appliances {
    background: #f8f9fa;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.sc-head {
    align-items: center;
    gap:20px;
    margin-bottom:20px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 0px;
    margin-left:-10px;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom:0px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.service-card li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author strong {
    color: #1a1a1a;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background:white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #1a1a1a;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    margin: 0;
    margin-top:20px;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.home-click-call {
  color: #fff;
  background: #111;
  padding:20px 60px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.home-click-call:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Deprecated */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    /* width: 300px; */
    background: #f8f9fa;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}
/* End of Deprecated */

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Home Services */
.services {
    background: #f8f9fa;
}
.service-bookings {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-bookings-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap:wrap;
    justify-content: center;
    margin-bottom:80px;
}

.service-booking-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: start;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    flex-basis:48%;
}

.service-booking-media a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
}

.service-booking-media img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-booking-title {
    margin-bottom: 10px;
}

.service-booking-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.service-booking-title a:hover {
    color: var(--primary-color);
}

.service-booking-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-booking-description p,
.service-booking-description ul,
.service-booking-description ol {
    margin-bottom: 10px;
    font-size:12x;
    display:none;
}

.service-booking-description p:nth-child(1) {
    display:block;
    font-size:12px;
    font-weight:bold;
    text-transform:capitalize;
}

.service-booking-description p:last-child,
.service-booking-description ul:last-child,
.service-booking-description ol:last-child {
    margin-bottom: 0;
}

.service-booking-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a87d4 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(99, 150, 224, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 150, 224, 0.3);
}


/* Badges Section */
.badges {
    background: #242d3f;
    padding: 20px 0;
}

.badges-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
}

.badge-item img {
  max-width: 80px;
  height: 60px;
  object-fit: contain;
  width: 100%;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 500;
}


/* Page Layout */
h1 {
    font-family: Georgia, serif;
}
body.page:not(.home) h1, body.singular:not(.home) h1 {
    text-align: center;
    margin-bottom: 40px;  
}

.hentry {
    margin-bottom: 80px;
}

.page-banner-img {
    max-height:400px;
    overflow:hidden;
    min-height:20px;
}
.page-banner-img img {
    width:100%;
    height:auto;
    object-fit:cover;
}

/* Blog Page */
.inner-page, .single-page {
    padding-top:80px;
}

.single-post .inner-page{
  padding-top: 130px;
  width: 65%;
}

.inner-page h1 {
    text-align:center;
    color:#6296de
}

.blog-page h1 {
    margin-top:60px;
}
.blog-page article{
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,0.1);
    margin-bottom:60px;
}

.page .entry-title {
    margin-top:40px;
}

.blog-page .entry-summary {
    display:flex;
    flex-direction:row;
    gap:60px;
}

.blog-page .entry-summary img {
    max-width:25%;
    height:auto;
    margin:0;
    border-radius:12px;
}
.blog-page article h2 {
    font-size:30px;
    margin-bottom:10px;
}
.blog-page article .entry-meta {
    margin-bottom:30px;
    font-size:14px;
}

ul.wp-block-list {
    list-style: disc !important;
    padding-left: 20px !important;
}

ol.wp-block-list {
    list-style: decimal !important;
    padding-left: 20px !important;
}

.post-edit-link {
    display:none;
}

.more-link:after {
    content: "Read More";
    font-weight:600;
}

.entry-content img.wp-post-image {
    max-width:100%;
    height:auto;
    margin:20px 0;
    border-radius:12px;
}

.entry-content .page-banner-img img {
    margin:0px;
    border-radius:0px
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.single-post main#content .footer {
  background: #e9e6e6;
  color: #1a1a1a;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.single-post main#content .footer a {
  color: #1a1a1a;
  font-size:14px;
  text-decoration: none;  
}
.single-post main#content .footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    font-size:12px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:10px;
}

.footer-bottom p{margin:0px}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.woocommerce_options_panel p.wps_mbfw_weekday_availability_field {
    display:flex !important;
    justify-content:space-between;
}

#alert_msg_client {
  color: red;
  font-size: 12px;
  width: 300px;
  display: block;
  margin-bottom: 30px;
  line-height: 18px;
  border: 2px dotted red;
  padding: 5px;
  background: #eee9e9;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
      font-size: 16px;
    }
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.1;
        margin-bottom: 20px;
    }
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1rem; }

    p, article ul, article ol  {
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
       display:flex;
    }
    
    .nav-toggle {
        display: flex;
    }

    #primary-menu.active .sub-menu {
        display: block !important;
        position: relative;
        margin-top: 10px;
    }

    .header-cta {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-right {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar .top-bar-right span a{
        color:#fff !important;
        text-decoration:none !important;
    }

    header#header {
        top: 0;
        padding: 10px 0;
    }

    .logo-img {
        height: 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-booking-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .service-booking-media img {
        height: 200px;
    }


    /* Blog */
    .blog-page .entry-summary {
        flex-direction: column;
        gap: 20px;
    }

    .blog-page .entry-summary img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-section p {
        margin-left:auto;
        margin-right:auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .badges-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .inner-page {
        padding-top:70px;
    }

    #post-192 .entry-content figure {
        float:unset;
        margin-left:0px;
        margin-right:0px;
        height:400px;
        overflow:hidden;
        display:block;
    }

    #post-192 .entry-content figure img {
        width:100% !important;
        height:auto;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .service-booking-card {
        padding: 18px;
    }

    .service-booking-media img {
        height: 180px;
    }

    .service-booking-button {
        width: 100%;
        text-align: center;
    }
}