/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #404040;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* =============================================
   HERO ENTRANCE ANIMATIONS
   ============================================= */
@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-hero {
    opacity: 0;
    animation: heroFadeInUp 1s ease forwards;
}

.animate-hero.delay-1 {
    animation-delay: 0.4s;
}

.animate-hero.delay-2 {
    animation-delay: 0.8s;
}

/* Scroll reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Image lazy load fade in */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
    opacity: 1;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Homepage transparent header overlaid on hero */
.home .site-header {
    background: transparent;
    box-shadow: none;
}

.home .site-header.scrolled {
    background: rgba(45, 49, 66, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-wrap {
    padding: 10px 0;
}

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

.site-branding {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-branding .custom-logo {
    max-height: 60px;
    width: auto;
}

.header-phone-mobile {
    display: block;
}

.header-phone {
    display: none;
}

.header-phone a,
.header-phone-mobile a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2d3142;
    transition: color 0.3s ease;
}

/* Homepage: phone number white on transparent header */
.home .header-phone a,
.home .header-phone-mobile a {
    color: #fff;
}

.home .header-phone a span,
.home .header-phone-mobile a span {
    color: #fff;
}

.header-phone a:hover,
.header-phone-mobile a:hover {
    color: #5DB2FF;
}

.header-phone a span,
.header-phone-mobile a span {
    color: #2d3142;
}

/* Navigation */
.mainnav {
    flex: 0 0 auto;
}

.mainnav .menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.mainnav .menu>.menu-item>a {
    display: block;
    padding: 10px 15px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d3142;
    text-transform: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

/* Homepage: nav links white on transparent header */
.home .mainnav .menu>.menu-item>a {
    color: #fff;
}

.mainnav .menu>.menu-item>a:hover {
    color: #5DB2FF;
}

/* Submenu / Mega Menu */
.menu-item-has-children {
    position: relative;
}

.header-wrap,
.header-inner,
.mainnav,
.mainnav .menu {
    overflow: visible;
}

/* Mega menu panel - fade in */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.menu-item-has-children:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

/* Left column: categories — always visible when menu is open */
.mega-col-categories {
    order: 1;
    display: flex;
    flex-direction: column;
    background: rgba(45, 49, 66, 0.97);
    min-width: 160px;
}

.mega-col-categories a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-col-categories a:hover,
.mega-col-categories a.active {
    background: #5DB2FF;
    color: #fff;
}

/* Middle column: brands — slides in to the right */
.mega-col-brands {
    order: 2;
    display: flex;
    flex-direction: column;
    background: rgba(35, 38, 52, 0.97);
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease;
}

.mega-col-brands.visible {
    max-width: 250px;
    opacity: 1;
}

.mega-col-brands .brand-group {
    display: none;
    flex-direction: column;
}

.mega-col-brands .brand-group.active {
    display: flex;
}

.mega-col-brands a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-col-brands a:hover,
.mega-col-brands a.active {
    background: #5DB2FF;
    color: #fff;
}

/* Right column: product links — slides in to the right */
.mega-col-products {
    order: 3;
    display: flex;
    flex-direction: column;
    background: rgba(30, 33, 45, 0.97);
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease;
}

.mega-col-products.visible {
    max-width: 300px;
    opacity: 1;
}

.mega-col-products .product-group {
    display: none;
    flex-direction: column;
}

.mega-col-products .product-group.active {
    display: flex;
}

.mega-col-products a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-col-products a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Legacy sub-menu hidden */
.sub-menu {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2d3142;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.sydney-hero-area {
    margin-top: 0;
}

/* On non-home pages, hero still has margin-top */
.page:not(.home) .sydney-hero-area {
    margin-top: 80px;
}

.slide-item {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.slide-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Anti-copy */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.maintitle {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    font-style: italic;
}

.roll-button {
    display: inline-block;
    padding: 12px 40px;
    background: #5DB2FF;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.roll-button:hover {
    background: #4a9fe6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 178, 255, 0.4);
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: #5DB2FF;
}

.breadcrumbs a {
    color: #5DB2FF;
    text-decoration: underline;
}

.breadcrumbs a:hover {
    color: #3d8ed4;
}

.breadcrumbs span {
    color: #999;
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #e8edf5 0%, #f0f4f8 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #2d3142;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .roll-button {
    margin-top: 20px;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2d3142;
    text-align: center;
    margin-bottom: 10px;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: #5DB2FF;
    margin: 0 auto 40px;
}

/* =============================================
   FORM SECTION
   ============================================= */
.section-form {
    padding: 60px 0 40px;
    background: #fff;
}

.form-wrapper {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.lead-form input {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #404040;
    outline: none;
    transition: border-color 0.3s ease;
}

.lead-form input:focus {
    border-color: #5DB2FF;
}

.lead-form input::placeholder {
    color: #999;
}

.btn-submit {
    display: inline-block;
    padding: 12px 35px;
    background: #5DB2FF;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-submit:hover {
    background: #4a9fe6;
    transform: translateY(-1px);
}

.form-phone a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #5DB2FF;
}

.form-phone a:hover {
    color: #4a9fe6;
}

/* =============================================
   INLINE FORM (side-by-side)
   ============================================= */
.form-inline-section {
    padding: 50px 0;
    background: #f0f4f8;
}

.form-inline-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.form-inline-wrapper .lead-form {
    flex: 0 0 250px;
}

.form-inline-wrapper .form-phone {
    margin-top: 10px;
}

.stock-info {
    text-align: center;
}

.stock-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #2d3142;
    font-weight: 400;
}

.stock-count {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #5DB2FF;
}

/* =============================================
   ADVANTAGES SECTION
   ============================================= */
.section-advantages {
    padding: 40px 0;
    background: #fff;
}

.advantages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.advantage-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.advantage-icon {
    margin-bottom: 15px;
}

.advantage-icon svg {
    width: 48px;
    height: 48px;
}

.advantage-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Two-column advantages */
.advantages-grid-2 {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.advantages-grid-2 .advantage-item {
    flex: 0 0 calc(50% - 15px);
    max-width: none;
}

/* Three-column features with checkmarks */
.features-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 40px;
    color: #5DB2FF;
}

.feature-icon .fa-check-circle {
    color: #5DB2FF;
}

.feature-item h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2d3142;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* =============================================
   INVERTER FEATURES GRID (3x2 with image)
   ============================================= */
.features-grid-inv {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-inv-item {
    text-align: center;
    padding: 20px 15px;
}

.feature-inv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-inv-icon svg {
    width: 48px;
    height: 48px;
}

.feature-inv-item h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2d3142;
    margin-bottom: 8px;
}

.feature-inv-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.feature-inv-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.feature-inv-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

/* =============================================
   ENGINEER SECTION
   ============================================= */
.section-engineer {
    padding: 50px 0;
    background: #f5f7fa;
    text-align: center;
}

.engineer-title {
    font-size: 15px;
    color: #2d3142;
    margin-bottom: 20px;
    line-height: 1.6;
}

.engineer-text {
    font-size: 14px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

/* =============================================
   BRANDS SECTION
   ============================================= */
.section-brands {
    padding: 60px 0;
    background: #fff;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.brand-item {
    flex: 0 0 calc(20% - 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.brand-item img {
    max-height: 55px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.brand-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* =============================================
   WHY US SECTION
   ============================================= */
.section-why-us {
    background: #fff;
}

.why-us-inner {
    display: flex;
    min-height: 500px;
}

.why-us-image {
    flex: 0 0 50%;
    overflow: hidden;
}

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

.why-us-content {
    flex: 0 0 50%;
    padding: 50px 40px;
    background: #f0f4f8;
}

.why-us-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #2d3142;
    margin-bottom: 30px;
    text-align: center;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.why-us-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: #5DB2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.why-us-text h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2d3142;
    margin-bottom: 5px;
}

.why-us-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* =============================================
   STATS SECTION
   ============================================= */
.section-stats {
    padding: 40px 0;
    background: linear-gradient(135deg, #3a3f58 0%, #2d3142 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.stat-icon {
    font-size: 32px;
    color: #5DB2FF;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    max-width: 80px;
    line-height: 1.3;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.section-about {
    padding: 60px 0;
    background: #fff;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.section-reviews {
    padding: 60px 0;
    background: #f5f7fa;
}

.reviews-grid {
    display: flex;
    gap: 30px;
}

.review-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dce3eb;
    margin: 0 auto 20px;
}

.review-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2d3142;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: left;
}

/* =============================================
   PRICING TABLE
   ============================================= */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 14px;
}

.pricing-table thead th {
    background: #2d3142;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}

.pricing-table tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e8;
    color: #404040;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f7f9fc;
}

.pricing-table tbody tr:hover {
    background: #eef3fa;
}

/* =============================================
   PRODUCT FEATURES GRID
   ============================================= */
.product-features {
    padding: 50px 0;
}

.product-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.product-feature-item {
    flex: 0 0 calc(33.33% - 14px);
    text-align: center;
    padding: 15px 10px;
}

.product-feature-item .pf-icon {
    width: 50px;
    height: 50px;
    background: #5DB2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-size: 20px;
}

.product-feature-item p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

/* =============================================
   SPECS TABLE
   ============================================= */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 30px 0;
    overflow-x: auto;
}

.specs-table th,
.specs-table td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.specs-table thead th {
    background: #2d3142;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
}

.specs-table tbody tr:nth-child(even) {
    background: #f7f9fc;
}

/* =============================================
   PRODUCT IMAGES
   ============================================= */
.product-hero-image {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.product-hero-image .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-hero-image h1 {
    font-size: 36px !important;
    color: #fff !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 0 !important;
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Montazh hero section */
.montazh-hero {
    background: #e8edf5;
    padding: 0;
}

.montazh-hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.montazh-hero-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

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

.montazh-hero-text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.montazh-hero-text h1 {
    font-size: 30px;
    color: #556;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Blue CTA button */
.btn-blue {
    display: inline-block;
    background: #5DB2FF;
    color: #fff;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-blue:hover {
    background: #3a9ef5;
    color: #fff;
}

/* Sale hero (teploventilyatory/mobile) */
.sale-hero-section {
    background: #f5f7fa;
    padding: 60px 0 40px;
    text-align: center;
}

.sale-hero-section h1 {
    font-size: 36px;
    color: #556;
    font-weight: 400;
    margin-bottom: 20px;
}

.sale-price {
    font-size: 24px;
    color: #2d3142;
    margin-bottom: 30px;
}

.sale-price s {
    color: #999;
    text-decoration: line-through;
}

/* Stock counter */
.stock-counter {
    background: linear-gradient(135deg, #5DB2FF 0%, #4a9de6 100%);
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

.stock-counter p {
    font-size: 22px;
    margin-bottom: 10px;
}

.stock-counter .count {
    font-size: 60px;
    font-weight: 700;
    color: #FFD700;
}

/* Two-step info */
.two-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 30px 0;
}

.two-steps .step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 400px;
}

.two-steps .step-num {
    font-size: 60px;
    font-weight: 300;
    color: #ddd;
    line-height: 1;
}

.two-steps .step-text {
    font-size: 18px;
    color: #5DB2FF;
    line-height: 1.4;
}

/* Brand logos row */
.brand-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.brand-logos-row img {
    max-height: 50px;
    width: auto;
    filter: grayscale(0);
}

.product-description {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.product-description h2 {
    font-size: 24px;
    color: #2d3142;
    margin-bottom: 15px;
}

.product-description p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Photo gallery */
.photo-gallery {
    padding: 40px 0;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 28px;
    color: #2d3142;
    font-weight: 400;
    margin-bottom: 30px;
}

.gallery-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-grid img {
    max-width: 300px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* =============================================
   PAGE CONTENT (for text pages)
   ============================================= */
.page-content {
    margin-top: 80px;
    padding: 30px 0 60px;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 28px;
    color: #2d3142;
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 22px;
    color: #2d3142;
    margin: 25px 0 10px;
}

.page-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.page-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.page-content ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.page-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.page-content ol li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* =============================================
   WHO NEEDS SECTION (teploventilyatory)
   ============================================= */
.who-needs-section {
    padding: 50px 0;
    background: #fff;
}

.who-needs-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.who-needs-image {
    flex: 0 0 45%;
}

.who-needs-image img {
    width: 100%;
    border-radius: 5px;
}

.who-needs-content {
    flex: 1;
}

.who-needs-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #5DB2FF;
    margin-bottom: 15px;
    font-weight: 400;
}

.who-needs-content ul {
    list-style: disc;
    padding-left: 20px;
}

.who-needs-content ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-section {
    padding: 40px 0;
}

.products-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    flex: 0 0 calc(50% - 15px);
    text-align: center;
    padding: 20px;
}

.product-card img {
    max-height: 200px;
    margin-bottom: 15px;
}

.product-card .roll-button {
    font-size: 12px;
    padding: 8px 25px;
}

/* =============================================
   WORK EXAMPLES
   ============================================= */
.work-examples {
    padding: 40px 0;
}

.work-examples h2 {
    text-align: center;
    font-size: 24px;
    color: #2d3142;
    font-weight: 400;
    margin-bottom: 30px;
}

.work-examples-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.work-examples-grid img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.work-examples-grid img:hover {
    transform: scale(1.05);
}

/* =============================================
   OFFER BANNER
   ============================================= */
.offer-banner {
    padding: 30px 0;
    text-align: center;
}

.offer-banner h2 {
    font-size: 28px;
    color: #2d3142;
    font-weight: 400;
    margin-bottom: 5px;
}

.offer-banner h3 {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    margin-bottom: 5px;
}

.offer-price {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #2d3142;
}

.offer-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

.offer-price .new-price {
    color: #2d3142;
    font-weight: 600;
}

/* Delivery / Installment Icons */
.delivery-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0;
}

.delivery-feature {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-feature .num {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: #2d3142;
}

.delivery-feature p {
    font-size: 14px;
    color: #555;
    text-align: left;
    max-width: 150px;
}

/* =============================================
   SALE PAGE STYLES
   ============================================= */
.sale-hero {
    margin-top: 80px;
    padding: 60px 0 30px;
    text-align: center;
    background: #fff;
}

.sale-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #2d3142;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sale-hero .offer-price {
    font-size: 24px;
}

.sale-product-image {
    text-align: center;
    padding: 20px 0;
}

.sale-product-image img {
    max-width: 350px;
}

/* =============================================
   PAINTING PAGE GALLERY
   ============================================= */
.painting-gallery {
    padding: 40px 0;
}

.painting-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.painting-gallery-grid img {
    width: 280px;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.painting-gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #2d3142;
    color: #a0a5b5;
    padding-top: 50px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #d0d4de;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    font-size: 14px;
    color: #a0a5b5;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #5DB2FF;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.7;
}

.footer-column a {
    color: #a0a5b5;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #5DB2FF;
}

.social-icon img {
    width: 50px;
    height: 50px;
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: #8a8f9f;
    text-align: center;
}

.footer-bottom a {
    color: #a0a5b5;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #5DB2FF;
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #2d3142;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #5DB2FF;
    color: #fff;
    border-color: #5DB2FF;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .maintitle {
        font-size: 36px;
    }

    .why-us-inner {
        flex-direction: column;
    }

    .why-us-image {
        flex: 0 0 auto;
        max-height: 350px;
    }

    .why-us-content {
        flex: 0 0 auto;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .form-inline-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .who-needs-inner {
        flex-direction: column;
    }

    .product-feature-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .sydney-hero-area {
        margin-top: 70px;
    }

    .page-hero {
        margin-top: 70px;
        padding: 40px 0;
    }

    .page-content {
        margin-top: 70px;
    }

    .sale-hero {
        margin-top: 70px;
    }

    .slide-item {
        min-height: 450px;
    }

    .maintitle {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .sale-hero h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .header-phone-mobile {
        display: block;
    }

    .header-phone-mobile a {
        font-size: 16px;
    }

    .mainnav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .mainnav.active {
        max-height: 400px;
    }

    .mainnav .menu {
        flex-direction: column;
        padding: 10px 0;
    }

    .mainnav .menu>.menu-item>a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f7f9fc;
    }

    .advantages-grid {
        flex-direction: column;
        align-items: center;
    }

    .advantage-item {
        max-width: 350px;
        width: 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .brands-grid {
        gap: 20px 30px;
    }

    .brand-item img {
        max-height: 40px;
    }

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

    .section-form,
    .section-advantages,
    .section-brands,
    .section-about,
    .section-reviews {
        padding: 40px 0;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .stat-number {
        font-size: 36px;
    }

    .delivery-features {
        flex-direction: column;
        align-items: center;
    }

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

    .product-card {
        flex: 0 0 100%;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .advantages-grid-2 .advantage-item {
        flex: 0 0 100%;
    }

    .product-feature-item {
        flex: 0 0 calc(50% - 10px);
    }

    .pricing-table {
        font-size: 12px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 8px 10px;
    }

    .painting-gallery-grid img {
        width: calc(50% - 8px);
        height: auto;
    }
}

@media (max-width: 480px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .site-branding {
        order: 1;
    }

    .menu-toggle {
        order: 3;
    }

    .header-phone {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
    }

    .maintitle {
        font-size: 24px;
    }

    .slide-item {
        min-height: 380px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .product-feature-item {
        flex: 0 0 100%;
    }

    .painting-gallery-grid img {
        width: 100%;
    }
}