/*
Theme Name: Only Kitchens & Baths
Theme URI: https://onlykitchensandbath.com
Author: Only Kitchens & Baths
Author URI: https://onlykitchensandbath.com
Description: Custom WordPress theme for Only Kitchens & Baths - Seattle's trusted kitchen and bathroom remodeling company. Features modern, luxury, and budget renovation services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: only-kitchens-baths
Tags: custom-menu, custom-logo, featured-images, theme-options, one-column, two-columns
*/

/* ==========================================================================
   CSS Reset / Normalize
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #292929;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
}

p {
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.container-wide {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: #71d3ce;
    padding: 8px 12px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.top-bar-promo {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 18px;
}

.top-bar-social {
    display: flex;
    gap: 10px;
}

.top-bar-social a {
    display: inline-flex;
}

.top-bar-social img {
    width: 20px;
    height: 20px;
}

.top-bar-phone {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    padding: 15px 20px;
    background-color: #fff;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand .site-logo-img {
    width: auto;
    height: 45px;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding a {
    display: flex;
    align-items: center;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #1a1b1f;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.3s linear;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #71d3ce;
}

/* Dropdown Menu */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    min-width: 250px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    flex-direction: column;
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.main-navigation .sub-menu a:hover {
    background-color: #f3fafa;
    border-left: 3px solid #0b8a8f;
    padding-left: 23px;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1a1b1f;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header CTA Button */
.header-cta {
    margin-left: 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    text-transform: uppercase;
    background-color: #71d3ce;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    color: #fff;
    background-color: #32343a;
    border-color: transparent;
}

.btn-white {
    color: #292929;
    background-color: #fff;
    border-radius: 20px;
    padding: 26px 25px;
}

.btn-white:hover {
    color: #fff;
    background-color: #71d3ce;
}

.btn-outline {
    background-color: transparent;
    border-color: #71d3ce;
    color: #71d3ce;
}

.btn-outline:hover {
    background-color: #71d3ce;
    color: #fff;
}

/* ==========================================================================
   Hero / Banner Section
   ========================================================================== */
.hero-section {
    background-image: url('assets/images/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 146px 12px;
    max-width: 1340px;
    margin: 0 auto;
}

.hero-section.inner-page {
    background-image: url('assets/images/Rectangle-1-1-1.png');
    padding-bottom: 100px;
}

.hero-content {
    max-width: 830px;
    margin-left: 0;
    margin-right: auto;
}

.hero-content.centered {
    max-width: 746px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.hero-title {
    color: #fff;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 66px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s linear;
}

.breadcrumb a:hover {
    color: #71d3ce;
}

.breadcrumb-separator {
    width: 8px;
    height: 8px;
}

/* ==========================================================================
   Contact Bar Section
   ========================================================================== */
.contact-bar {
    margin-top: -50px;
    padding: 0 12px;
    position: relative;
    z-index: 10;
}

.contact-bar-inner {
    background-color: #0a0a0a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 949px;
    margin: 0 auto;
    padding: 29px 50px;
}

.contact-bar-item {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 18px;
    transition: color 0.3s linear;
}

.contact-bar-item:hover {
    color: #71d3ce;
}

.contact-bar-divider {
    border-left: 1px solid #fff;
    height: 25px;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    padding: 100px 12px;
}

.section-gray {
    background-color: #f8f8f8;
}

.section-title {
    color: #292929;
    text-align: center;
    max-width: 997px;
    margin: 0 auto 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 37px;
    font-weight: 600;
    line-height: 50px;
}

.section-subtitle {
    color: #292929;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
}

.section-line {
    border-top: 1px solid #71d3ce;
    width: 134px;
    margin: 20px auto;
}

.section-line.left {
    margin-left: 0;
}

/* ==========================================================================
   Bathroom / About Section
   ========================================================================== */
.about-section {
    padding: 100px 12px;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-content {
    width: 50%;
}

.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
}

.about-heading {
    color: #292929;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 48px;
}

.about-tagline {
    color: #292929;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 26px;
}

.about-text {
    color: #292929;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
}

/* ==========================================================================
   Stats / Counter Section
   ========================================================================== */
.stats-section {
    padding: 0 12px 60px 0;
}

.stats-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-row {
    display: flex;
    gap: 30px;
    width: 100%;
    background-color: #f8f8f8;
    align-items: center;
}

.stats-image {
    width: 50%;
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-content {
    width: 50%;
    max-width: 550px;
    padding-right: 40px;
}

.stats-title {
    color: #292929;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
}

.stats-text {
    color: #292929;
    padding: 17px 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
}

.stats-buttons {
    display: flex;
    gap: 10px;
}

.counter-row {
    display: flex;
    gap: 80px;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.counter-item {
    text-align: center;
}

.counter-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 56px;
    color: #292929;
}

.counter-label {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #292929;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 80px 12px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ==========================================================================
   Services / Renovation Options Section
   ========================================================================== */
.services-section {
    padding: 80px 12px 100px;
}

.service-row {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    width: 50%;
}

.service-image {
    width: 50%;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 48px;
    font-size: 32px;
    margin-bottom: 15px;
}

.service-description {
    color: #292929;
    padding-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
}

/* ==========================================================================
   Design Matters Section
   ========================================================================== */
.design-section {
    padding: 0 12px 100px;
}

.design-wrapper {
    background-color: #f8f8f8;
    border-radius: 10px;
    max-width: 1340px;
    margin: 0 auto;
}

.design-inner {
    max-width: 1138px;
    margin: 0 auto;
    padding: 60px 20px;
}

.design-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.design-grid.reverse {
    flex-direction: row-reverse;
}

.design-image {
    width: 50%;
}

.design-image img {
    width: 100%;
}

.design-content {
    width: 50%;
}

.design-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 48px;
    font-size: 32px;
    margin-top: 0;
}

.design-tagline {
    color: #292929;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 26px;
    padding-bottom: 10px;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.form-section {
    padding: 60px 12px 80px;
}

.form-section.section {
    padding: 60px 12px 80px;
}

.form-grid {
    display: flex;
    gap: 40px;
}

.form-content {
    width: 60%;
    padding-right: 20px;
}

.form-content .entry-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #292929;
}

.form-content .entry-content p {
    margin-bottom: 20px;
}

.form-content .entry-content h2,
.form-content .entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-content .entry-content ul,
.form-content .entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.form-content .entry-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.form-sidebar {
    width: 40%;
    border: 2px solid #71d3ce;
    border-radius: 10px;
    padding: 30px 25px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.form-sidebar.no-border {
    border: none;
    background-color: #f8f8f8;
    border-radius: 0;
}

.form-title {
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(116, 116, 116, 0.4);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #292929;
    margin-bottom: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #292929;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button,
.contact-form input[type="submit"] {
    margin-top: 20px;
    width: 100%;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-heading {
    color: #292929;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

.content-text {
    color: #292929;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
}

.content-divider {
    border-top: 1px solid rgba(116, 116, 116, 0.4);
    margin: 50px 0;
}

.content-image {
    width: 100%;
    padding: 50px 0;
}

/* General Entry Content Styles */
.entry-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #292929;
    max-width: 900px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

.entry-content h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.entry-content a {
    color: #71d3ce;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #292929;
}

.entry-content img {
    margin: 30px 0;
    border-radius: 10px;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f8f8f8;
    border-left: 4px solid #71d3ce;
    font-style: italic;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 12px 100px;
}

.cta-wrapper {
    background-color: #f8f8f8;
    padding: 70px 20px;
    text-align: center;
    max-width: 1340px;
    margin: 0 auto;
}

.cta-title {
    color: #292929;
    max-width: 997px;
    margin: 0 auto 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 37px;
    font-weight: 600;
    line-height: 50px;
}

.cta-subtitle {
    color: #292929;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 26px;
    padding-bottom: 10px;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    padding: 0 12px 100px;
}

.map-wrapper {
    display: flex;
    max-width: 1340px;
    margin: 0 auto;
}

.map-form {
    width: 50%;
    background-color: #f8f8f8;
    padding: 30px 25px;
}

.map-embed {
    width: 50%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 594px;
    border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 0 12px;
    background-color: #fff;
}

.footer-main {
    display: flex;
    gap: 95px;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.footer-brand {
    width: 50%;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    width: 253px;
    height: auto;
    max-width: 100%;
}

.footer-description {
    max-width: 442px;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 28px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 28px;
}

.footer-contact-item strong {
    font-weight: 700;
}

.footer-links {
    width: 15%;
}

.footer-links.wide {
    width: 35%;
}

.footer-links-title {
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #71d3ce;
}

.footer-bottom {
    border-top: 1px solid #747474;
    padding: 10px 0;
    text-align: center;
}

.footer-copyright {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 28px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-section {
    padding: 80px 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Why Choose Us / Features
   ========================================================================== */
.features-section {
    padding: 80px 12px;
}

.features-grid {
    display: flex;
    gap: 40px;
}

.features-column {
    width: 50%;
}

.features-title {
    color: #292929;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    gap: 20px;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-item-title {
    color: #292929;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    margin: 0;
}

.feature-item-text {
    color: #292929;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-section {
    padding: 60px 12px 80px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    padding-top: 40px;
}

.contact-info {
    width: 50%;
}

.contact-form-wrapper {
    width: 50%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(113, 211, 206, 0.1);
    border-radius: 20px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
}

.contact-card-content {
    font-family: 'Montserrat', sans-serif;
    line-height: 28px;
}

.contact-card-label {
    font-weight: 600;
    font-size: 17px;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.wp-block-image {
    margin: 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Large Desktop (1280px and up) */
@media screen and (min-width: 1280px) {
    .stats-section {
        padding-bottom: 80px;
    }

    .stats-wrapper {
        flex-direction: row;
    }

    .stats-row {
        width: 80%;
    }

    .counter-row {
        flex-direction: column;
        width: 20%;
        margin-top: 0;
    }
}

/* Tablet (991px and below) */
@media screen and (max-width: 991px) {
    .container {
        max-width: 728px;
    }

    .hero-section {
        padding: 120px 12px;
    }

    .hero-title {
        font-size: 49px;
    }

    .about-grid,
    .service-row,
    .design-grid {
        gap: 30px;
    }

    .about-heading {
        font-size: 34px;
    }

    .stats-title {
        font-size: 39px;
    }

    .section-title {
        font-size: 30px;
        line-height: 46px;
    }

    .form-grid {
        gap: 20px;
    }

    .form-content {
        width: 55%;
    }

    .form-sidebar {
        width: 45%;
    }

    .footer-main {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-brand {
        width: 55%;
    }

    .footer-links {
        width: 24%;
    }

    .footer-links.wide {
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 8px 50px rgba(0,0,0,0.05);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
}

/* Mobile Landscape (767px and below) */
@media screen and (max-width: 767px) {
    .hero-section {
        padding: 100px 12px;
    }

    .hero-title {
        font-size: 41px;
        line-height: 59px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-bar-inner {
        flex-direction: column;
        gap: 19px;
    }

    .contact-bar-divider {
        display: none;
    }

    .about-grid,
    .service-row,
    .service-row.reverse,
    .design-grid,
    .design-grid.reverse {
        flex-direction: column;
    }

    .about-content,
    .about-image,
    .service-content,
    .service-image,
    .design-image,
    .design-content {
        width: 100%;
    }

    .about-heading {
        font-size: 30px;
        line-height: 44px;
    }

    .stats-section {
        background-color: #f8f8f8;
        padding-left: 12px;
    }

    .stats-row {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .stats-image,
    .stats-content {
        width: 100%;
    }

    .stats-title {
        font-size: 30px;
        line-height: 40px;
        text-align: center;
    }

    .stats-text {
        text-align: center;
    }

    .stats-buttons {
        justify-content: center;
    }

    .counter-row {
        gap: 22px;
    }

    .counter-number {
        font-size: 36px;
        line-height: 43px;
    }

    .form-grid {
        flex-direction: column;
    }

    .form-content,
    .form-sidebar {
        width: 100%;
        padding-right: 0;
    }

    .form-sidebar {
        margin-top: 40px;
    }

    .map-wrapper {
        flex-direction: column;
    }

    .map-form,
    .map-embed {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-brand,
    .footer-links,
    .footer-links.wide {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        flex-direction: column;
    }

    .features-column {
        width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }

    .service-row.reverse {
        flex-direction: column-reverse;
    }
}

/* Mobile Portrait (479px and below) */
@media screen and (max-width: 479px) {
    .container,
    .container-wide {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-section,
    .form-section.section {
        padding: 40px 15px 60px;
    }

    .section {
        padding: 60px 15px;
    }

    .top-bar-promo {
        font-size: 12px;
    }

    .top-bar-social {
        display: none;
    }

    .hero-section {
        background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('assets/images/banner-bg.jpg');
        padding: 10px 12px 50px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 55px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 29px;
    }

    .contact-bar {
        margin-top: 0;
        display: none;
    }

    .navbar-brand .site-logo-img {
        height: 35px;
        width: auto;
    }

    .about-section {
        padding: 40px 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .about-text {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        gap: 10px;
    }

    .breadcrumb a {
        font-size: 12px;
    }

    .site-logo img {
        width: 140px;
    }

    .nav-menu-wrapper {
        width: 90%;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .top-bar,
    .site-header,
    .contact-bar,
    .cta-section,
    .site-footer {
        display: none;
    }

    .hero-section {
        padding: 20px;
        background: #f8f8f8;
    }

    .hero-title,
    .hero-subtitle {
        color: #292929;
    }
}
