/*
Theme Name: Snowpark Theme
Theme URI: https://snowpark.example.com
Author: Antigravity
Author URI: https://google.com
Description: A premium, state-of-the-art WordPress theme designed for advanced HVAC & climate engineering solutions. Features a corporate enterprise style, white sticky navigation, B2B split-hero sections with custom curved divider overlays, and a floating industry strip.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: snowpark-theme
*/

/* ==========================================================================
   1. Design System & CSS Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Corporate B2B Palette */
    --primary-blue: #0E4B8B;
    --dark-navy: #062E5D;
    --accent-yellow: #F6C431;
    --white: #FFFFFF;

    /* Functional Colors */
    --bg-light: #F8FAFC;
    --bg-dark: #04070D;

    --text-navy: #062E5D;
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #64748B;

    --text-white: #FFFFFF;
    --text-light: #E2E8F0;

    --border-light: #E2E8F0;
    --border-accent: rgba(246, 196, 49, 0.3);

    /* Layout & Shadow Tokens */
    --header-height: 100px;
    --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-shadow: 0 15px 35px rgba(2, 4, 8, 0.08);
    --btn-shadow: 0 4px 15px rgba(246, 196, 49, 0.25);

    /* Typography & Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-navy);
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 5% !important;
    /* Premium wider fluid layout on desktop */
    box-sizing: border-box;
}

/* ==========================================================================
   3. White Navigation Bar & Brand Logo
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--nav-shadow);
    z-index: 2000;
    display: flex;
    align-items: center;
    transition: var(--transition-medium);
}

.site-header.scrolled {
    height: 90px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100% !important;
    padding: 0 5% !important;
    /* Match global wide desktop padding */
    gap: 1.5rem;
}

/* Left Brand Logo block (Flex-grow to balance right CTA) */
.site-logo {
    display: flex;
    align-items: center;
    flex: 1 1 0%;
}

.logo-image {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-medium);
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

.site-header.scrolled .logo-image {
    max-height: 54px;
}

/* Center Horizontal Menu (Perfect Center-aligned) */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-item {
    position: relative;
    padding: 2.1rem 0.5rem;
}

.site-header.scrolled .nav-item {
    padding: 1.8rem 0.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-navy);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.nav-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: var(--transition-fast);
}

/* Hover and Active Link highlight */
.nav-item:hover>.nav-link,
.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active,
.nav-link.parent-active {
    color: var(--primary-blue);
}

/* Yellow Underline indicator for active item */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.nav-link.active::after,
.nav-link.parent-active::after {
    transform: scaleX(1);
}

.nav-item:hover>.nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    width: 260px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 1010;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    transform: rotate(45deg);
    z-index: -1;
}

/* Transparent Hover Bridge */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: -1;
}

.nav-item:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Right-align later dropdowns to prevent screen cut-off */
.main-menu>li:nth-last-child(-n+2)>.dropdown-menu {
    left: auto;
    right: 0;
}

.main-menu>li:nth-last-child(-n+2)>.dropdown-menu::before {
    left: auto;
    right: 20px;
}

.dropdown-item {
    padding: 0.1rem 0.5rem;
}

.dropdown-link {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    color: var(--text-secondary);
    border-radius: 6px;
}

.dropdown-link:hover,
.dropdown-link.active {
    color: var(--primary-blue);
    background: var(--bg-light);
    transform: translateX(4px);
}

/* Right Section Call CTA Block (Flex-grow to balance left Logo) */
.header-call-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 0%;
    justify-content: flex-end;
    text-align: right;
}

.call-icon-container {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(14, 75, 139, 0.25);
    transition: var(--transition-fast);
}

.header-call-cta:hover .call-icon-container {
    transform: scale(1.05) rotate(15deg);
    background-color: #0c3e74;
}

.call-svg {
    width: 24px;
    height: 24px;
}

.call-details {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    line-height: 1;
    margin-right: -0.4em;
    /* offsets last character tracking for exact right-alignment */
}

.call-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-top: 5px;
    line-height: 1.1;
}

/* Mobile Toggle Hamburger styling */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2000;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-navy);
    margin: 6px auto;
    transition: var(--transition-medium);
    border-radius: 2px;
}

.mobile-toggle.active .hamburger-line {
    background-color: var(--text-navy);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   4. Split-Screen Hero Section (Daikin Navy Blue theme)
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--dark-navy);
    min-height: 100vh; /* Set to 100vh so the blue background touches the bottom of the screen */
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 0; /* Let the container bottom touch the absolute bottom */
    display: flex;
    align-items: stretch; /* Stretch the container to fill the full height */
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* 60% left column / 40% right column split */
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100% !important;
    /* Spans 100% viewport width */
    padding: 0 5% !important;
    /* Match global wide desktop padding */
    position: relative;
}

.hero-content {
    max-width: 700px;
    /* Highly balanced content width for reduced text sizes */
    position: relative;
    z-index: 10;
    padding: 2rem 0 250px; /* Set deep bottom padding to reserve clean space for the absolute bottom quick-strip */
}

/* Authorized Daikin Trust Badge - Reduced by 30% for high-trust elegance */
.trust-badge {
    border: 1px solid var(--accent-yellow);
    border-radius: 8px;
    background: rgba(246, 196, 49, 0.05);
    padding: 0.525rem 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    margin-bottom: 1.2rem; /* Reduced margin to optimize vertical space */
}

.badge-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.badge-sub {
    color: var(--accent-yellow);
}

.badge-separator {
    width: 1px;
    height: 26px; /* Increased to match larger logo */
    background-color: rgba(255, 255, 255, 0.2);
}

.daikin-logo {
    display: flex;
    align-items: center;
}

.daikin-logo-img {
    height: 26px; /* Increased to make logo larger */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Main B2B Headline - Reduced by 30% (3.68rem / 59px) */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.68rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 1rem; /* Reduced margin to optimize vertical space */
    letter-spacing: -0.01em;
}

/* Full-width Divider Line - Reduced by 30% */
.headline-accent-line {
    width: 100%;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
    margin-bottom: 1.2rem; /* Reduced margin to optimize vertical space */
}

/* Description block - Reduced by 30% for high-end B2B styling */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 1.5rem; /* Reduced margin to optimize vertical space */
    max-width: 630px;
}

/* Statistics row - Expanded to 5 columns and reduced by 30% */
.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem; /* Reduced margin to optimize vertical space */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem; /* Reduced padding to optimize vertical space */
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-white);
}

.stat-icon {
    color: var(--accent-yellow);
    margin-bottom: 0.525rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.india-map-icon svg {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.68rem;
    /* Reduced by 30% */
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1.2;
    white-space: nowrap;
    /* Prevents values and units like HP/TR from wrapping */
}

.stat-label {
    font-size: 0.78rem;
    /* Reduced by 30% */
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.3;
}

/* CTA buttons - Reduced by 30% */
.hero-buttons {
    display: flex;
    gap: 1.3rem;
}

.hero-buttons svg {
    width: 19px;
    height: 19px;
}

.btn-primary-yellow {
    background-color: var(--accent-yellow);
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    /* Reduced by 30% */
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1.05rem 2.3rem;
    /* Reduced by 30% */
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--btn-shadow);
    transition: var(--transition-fast);
}

.btn-primary-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 196, 49, 0.3);
    background-color: #ffd656;
}

.btn-secondary-white {
    background-color: transparent;
    color: var(--text-white);
    border: 1.5px solid var(--white);
    /* Reduced border thickness */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    /* Reduced by 30% */
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1.05rem 2.3rem;
    /* Reduced by 30% */
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.btn-secondary-white:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Right Visual Column (45%) with curved vertical divider mask */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 480px;
    align-self: stretch;
    border-radius: 0; /* Remove rounded corners for full bleed edge-to-edge look */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4, 7, 13, 0.85) 0%, rgba(4, 7, 13, 0) 55%);
    z-index: 2;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Custom curved accent shape divider mask */
.hero-curve-divider {
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.hero-curve-divider svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   5. Industry Quick Links Strip
   ========================================================================== */
.industry-strip-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.industry-quick-strip {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 0;
    /* Let cards fill the full container height */
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center vertically inside card */
    text-align: center;
    padding: 3.2rem 1.2rem; /* Increased by 40% for extra height */
    border-right: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.industry-card:last-child {
    border-right: none;
}

.ind-icon {
    color: var(--primary-blue);
    width: 45px; /* Increased by 40% from 32px */
    height: 45px; /* Increased by 40% from 32px */
    margin-bottom: 1.2rem; /* Increased by 40% from 0.8rem */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.ind-icon svg {
    width: 36px; /* Increased by 40% from 26px */
    height: 36px; /* Increased by 40% from 26px */
}

.ind-title {
    font-family: var(--font-heading);
    font-size: 1.25rem; /* Increased by 40% from 0.9rem */
    font-weight: 700;
    color: var(--text-navy);
    line-height: 1.3;
}



/* ==========================================================================
   6. Footer Styling
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--accent-yellow);
    opacity: 1;
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ==========================================================================
   7. Mobile Responsive Navigation Drawer (99% glass backdrop)
   ========================================================================== */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1500;
    padding: 7rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: right var(--transition-medium);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered cascading load delay */
.mobile-nav-drawer.active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.06s;
}

.mobile-nav-drawer.active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.12s;
}

.mobile-nav-drawer.active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.18s;
}

.mobile-nav-drawer.active .mobile-menu-item:nth-child(4) {
    transition-delay: 0.24s;
}

.mobile-nav-drawer.active .mobile-menu-item:nth-child(5) {
    transition-delay: 0.30s;
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.mobile-menu-link.active {
    color: var(--primary-blue);
}

.mobile-menu-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.mobile-menu-link.active svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        margin-top 0.3s ease,
        padding-bottom 0.3s ease;
}

.mobile-submenu.active {
    max-height: 400px;
    opacity: 1;
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
}

.mobile-sub-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.9;
    display: block;
    padding: 0.4rem 0;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
    color: var(--primary-blue);
    opacity: 1;
}

/* Close/CTA button inside drawer */
.btn-cta {
    background-color: var(--accent-yellow);
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--btn-shadow);
    transition: var(--transition-fast);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 196, 49, 0.4);
    background-color: #ffd656;
}

/* ==========================================================================
   8. Full Responsive Layout Breakpoints
   ========================================================================== */
@media (max-width: 1150px) {
    .industry-strip-wrapper {
        position: relative;
        bottom: auto;
        transform: none;
        margin-top: 2rem;
        margin-bottom: 2rem;
        width: 100%;
        z-index: 100 !important; /* Make sure it sits on top and is fully interactive */
    }

    .container {
        max-width: 100% !important;
        padding: 0 1.5rem !important;
    }

    .header-container {
        padding: 0 1.5rem !important;
    }

    /* Navbar adjust */
    .main-nav,
    .header-call-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .site-logo {
        flex: 0 1 auto;
        max-width: 70%;
    }

    .logo-desktop {
        display: block;
    }

    .logo-mobile {
        display: none;
    }

    .logo-image {
        max-width: 100%;
        max-height: 54px;
    }

    /* Hero layout collapses to single column */
    .hero-section {
        position: relative;
        background: linear-gradient(to bottom, var(--dark-navy) 70vh, #0c3e74 100vh);
        background-color: var(--dark-navy);
        min-height: 100vh;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-top: var(--header-height);
        padding-bottom: 0;
        box-sizing: border-box;
        z-index: 1;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 70vh; /* Locked to exactly 70vh of screen height, so it never stretches! */
        background: linear-gradient(to bottom, rgba(4, 7, 13, 0.95) 0%, rgba(4, 7, 13, 0) 55%, rgba(4, 7, 13, 0) 55%, var(--dark-navy) 100%), url('assets/commercial_hvac.png') no-repeat center / cover;
        z-index: 0;
        pointer-events: none;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 0.8rem;
        max-width: 100% !important;
        padding: 1.5rem 1.5rem !important; /* Restored elegant mobile padding */
        box-sizing: border-box;
        justify-content: center;
        height: auto;
        z-index: 10;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        flex: 1;
        justify-content: center;
        max-width: 100%;
    }

    .headline-accent-line {
        width: 120px;
        height: 4px;
        background-color: var(--accent-yellow);
        border-radius: 2px;
        margin: 0 auto 1.2rem;
    }

    /* Scale down hero typography slightly on tablet */
    .hero-title {
        font-size: 2.3rem; /* Scaled down slightly to fit strict 100vh */
        /* Reduced by 30% from 4.2rem */
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.82rem; /* Scaled down slightly to fit strict 100vh */
        font-weight: 600; /* Increased font weight for high mobile readability */
        /* Reduced by 30% */
        margin-bottom: 1.2rem;
        max-width: 100%;
    }

    /* Trust Badge adjustment on tablet */
    .trust-badge {
        padding: 0.42rem 1.05rem;
        /* Reduced by 30% */
        gap: 0.63rem;
        /* Reduced by 30% */
        margin-bottom: 1.5rem;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        display: inline-flex;
        align-items: center;
    }

    .badge-label {
        font-size: 0.66rem;
        /* Reduced by 30% */
    }

    .daikin-logo-img {
        height: 28px; /* Increased to make logo larger */
    }

    .badge-separator {
        height: 28px; /* Increased to match larger logo */
    }

    /* Wrap 5 cards into repeat(3, 1fr) on tablet to prevent crowding */
    .stats-row {
        width: 100%;
        max-width: 800px;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        /* Reduced by 30% */
        margin-bottom: 2.5rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.4rem;
        /* Reduced by 30% */
    }

    .stat-label {
        font-size: 0.66rem;
        /* Reduced by 30% */
    }

    /* CTA buttons adjustment on tablet */
    .btn-primary-yellow,
    .btn-secondary-white {
        font-size: 0.85rem;
        /* Reduced by 30% */
        padding: 0.9rem 1.9rem;
        /* Reduced by 30% */
        border-radius: 6px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .hero-buttons svg {
        width: 22px;
        height: 22px;
    }

    .hero-visual {
        display: none !important;
    }

    .hero-curve-divider {
        display: none;
        /* remove divider in one column */
    }

    /* Quick Links strip becomes responsive grid */
    .industry-quick-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .industry-card {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .industry-card:nth-child(4),
    .industry-card:nth-child(5),
    .industry-card:nth-child(6) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .logo-image,
    .site-header.scrolled .logo-image {
        max-height: 68px;
    }

    .container {
        padding: 0 1.5rem !important;
    }

    /* Scale down hero typography on mobile */
    .hero-title {
        font-size: 2.1rem;
        /* Reduced by 30% from 3rem */
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.84rem;
        /* Reduced by 30% from 1.2rem */
        margin-bottom: 2rem;
    }

    /* Outlined trust badge on mobile */
    .trust-badge {
        padding: 0.35rem 0.84rem;
        /* Reduced by 30% */
        gap: 0.525rem;
        /* Reduced by 30% */
        margin-bottom: 1.2rem;
        width: fit-content;
        max-width: 100%;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        display: inline-flex;
        align-items: center;
    }

    .badge-label {
        font-size: 0.6rem;
        /* Reduced by 30% */
    }

    .daikin-logo-img {
        height: 26px; /* Increased logo size in mobile view */
    }

    .badge-separator {
        height: 26px; /* Increased to match larger logo */
    }

    /* 2 columns grid for mobile screens */
    /* 2 columns grid for mobile screens with perfect line dividers */
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-bottom: 1rem;
        padding-top: 0.75rem;
    }

    .stats-row .stat-card {
        padding: 0.4rem 0.5rem;
        box-sizing: border-box;
    }

    /* No dividers between stat cards on mobile */

    .stats-row .stat-card:last-child {
        grid-column: span 2;
        padding-top: 1.2rem;
    }

    .stat-number {
        font-size: 1.13rem; /* Reduced by 10% from 1.26rem */
    }

    .stat-label {
        font-size: 0.54rem; /* Reduced by 10% from 0.6rem */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        gap: 1rem;
    }

    .btn-primary-yellow,
    .btn-secondary-white {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        /* Reduced by 30% */
        padding: 0.77rem 1.54rem;
        /* Reduced by 30% */
        border-radius: 5px;
    }

    .industry-quick-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 0; /* Clear gap to let grid borders form solid lines */
    }

    .industry-card {
        border-bottom: 1px solid var(--border-light);
        border-right: none;
    }

    .industry-card:nth-child(odd) {
        border-right: 1px solid var(--border-light); /* Vertical line divider between columns */
    }

    /* Restore border-bottom on card 4 (Showrooms & Retail) — overrides tablet query's border-bottom: none */
    .industry-card:nth-child(4) {
        border-bottom: 1px solid var(--border-light) !important;
    }

    .industry-card:nth-child(5),
    .industry-card:nth-child(6) {
        border-bottom: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-badge {
        padding: 0.25rem 0.6rem;
        gap: 0.4rem;
    }

    .badge-label {
        font-size: 0.52rem;
    }

    .daikin-logo-img {
        height: 22px; /* Increased logo size in small phone view */
    }

    .badge-separator {
        height: 22px; /* Increased to match larger logo */
    }

    .hero-title {
        font-size: 1.68rem;
        /* Reduced by 30% */
    }

    .hero-description {
        font-size: 0.77rem;
        /* Reduced by 30% */
    }

    /* Keep 2 columns grid for small phones */
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .stats-row .stat-card:last-child {
        grid-column: span 2;
    }

    .stat-number {
        font-size: 1.12rem;
        /* Reduced by 30% */
    }

    .stat-label {
        font-size: 0.56rem;
        /* Reduced by 30% */
    }



    .logo-image,
    .site-header.scrolled .logo-image {
        max-height: 60px;
    }
}

/* ==========================================================================
   HVAC Solutions Section
   ========================================================================== */

.hvac-solutions-section {
    background: #F8FAFC;
    width: 100%;
    padding: 100px 0 120px;
}

.hvac-solutions-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* --- Section Header --- */
.hvac-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.hvac-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}

.hvac-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #0E4B8B;
    text-transform: uppercase;
}

.hvac-label-underline {
    width: 40px;
    height: 3px;
    background: #F6C431;
    border-radius: 2px;
}

.hvac-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: #082E63;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 20px;
}

.hvac-subtext {
    font-size: clamp(16px, 1.5vw, 20px);
    color: #5B6473;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* --- Solutions Grid --- */
.hvac-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* --- Individual Card --- */
.hvac-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(8, 46, 99, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.hvac-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(8, 46, 99, 0.14);
    border-color: rgba(14, 75, 139, 0.18);
}

/* Card Top: icon + title */
.hvac-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.hvac-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #0E4B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.hvac-card:hover .hvac-card-icon {
    background: #082E63;
}

.hvac-card-title-wrap {
    padding-top: 4px;
}

.hvac-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #082E63;
    line-height: 1.25;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hvac-card-title-accent {
    width: 28px;
    height: 2.5px;
    background: #F6C431;
    border-radius: 2px;
}

/* Card Body: desc + image */
.hvac-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.hvac-card-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
}

.hvac-card-image-wrap {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #F1F5F9;
}

.hvac-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.hvac-card:hover .hvac-card-img {
    transform: scale(1.04);
}

/* Learn More Link */
.hvac-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #0E4B8B;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.hvac-learn-more:hover {
    color: #082E63;
    gap: 8px;
}

.hvac-arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.hvac-learn-more:hover .hvac-arrow {
    transform: translateX(4px);
}

/* --- CTA Banner --- */
.hvac-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(120deg, #082E63 0%, #0E4B8B 100%);
    border-radius: 24px;
    padding: 40px 60px;
}

.hvac-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.hvac-cta-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(246, 196, 49, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hvac-cta-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.hvac-cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.hvac-cta-btn {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    background: #F6C431;
    color: #082E63;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 4px 20px rgba(246, 196, 49, 0.3);
    white-space: nowrap;
}



/* ==========================================================================
   HVAC Solutions — Responsive
   ========================================================================== */

@media (max-width: 1150px) {
    .hvac-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hvac-solutions-container {
        padding: 0 32px;
    }

    .hvac-cta-banner {
        padding: 36px 40px;
    }
}

@media (max-width: 768px) {
    .hvac-solutions-section {
        padding: 64px 0 80px;
    }

    .hvac-solutions-container {
        padding: 0 20px;
    }

    .hvac-solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hvac-section-header {
        margin-bottom: 40px;
    }

    .hvac-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
        gap: 24px;
    }

    .hvac-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hvac-card-image-wrap {
        height: 180px;
    }
}

/* ==========================================================================
   Daikin Partnership Section
   ========================================================================== */

.daikin-partner-section {
    background: #F8FAFC;
    width: 100%;
    padding: 120px 0;
}

.daikin-partner-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* --- Main 45/55 grid --- */
.daikin-partner-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* ---- LEFT: Image Gallery ---- */
.daikin-gallery {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Floating Brand Badge */
.daikin-brand-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(8, 46, 99, 0.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.daikin-badge-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.daikin-badge-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    color: #5B6473;
    letter-spacing: 0.5px;
}

/* Top image — actual ratio */
.daikin-img-top {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: #f1f5f9;
}

.daikin-img-top .daikin-img {
    width: 100%;
    height: auto;
}

/* Bottom merged image */
.daikin-img-bottom-merged {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.daikin-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.daikin-img-top:hover .daikin-img,
.daikin-img-bottom-merged:hover .daikin-img {
    transform: scale(1.04);
}

/* ---- RIGHT: Content ---- */
.daikin-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
}

/* Label */
.daikin-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.daikin-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0E4B8B;
    text-transform: uppercase;
}

.daikin-label-line {
    width: 100%;
    height: 4px;
    background: #F6C431;
    border-radius: 2px;
}

/* Heading */
.daikin-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    color: #082E63;
    line-height: 1.1;
    margin-bottom: 28px;
}

.daikin-highlight {
    color: #2B78FF;
}

/* Description */
.daikin-desc {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.8;
    color: #5B6473;
    max-width: 760px;
    margin-bottom: 20px;
}

.daikin-desc:last-of-type {
    margin-bottom: 36px;
}

/* Feature Grid — 2×2 */
.daikin-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    margin-bottom: 36px;
}

.daikin-feat-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.daikin-feat-card:nth-child(3),
.daikin-feat-card:nth-child(4) {
    margin-bottom: 0;
    border-bottom: none;
}

.daikin-feat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: #EEF5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.daikin-feat-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #082E63;
    margin-bottom: 4px;
    line-height: 1.3;
}

.daikin-feat-desc {
    font-size: 13.5px;
    color: #5B6473;
    line-height: 1.55;
}

/* Trust Strip */
.daikin-trust-strip {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    margin-bottom: 36px;
    gap: 0;
}

.daikin-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}

.daikin-india-map-icon {
    color: #0E4B8B;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.daikin-india-map-icon svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.daikin-trust-item:first-child {
    padding-left: 0;
}

.daikin-trust-sep {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.daikin-trust-label {
    font-size: 12px;
    color: #5B6473;
    line-height: 1.4;
}

.daikin-trust-label strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #082E63;
}

/* CTA Buttons */
.daikin-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.daikin-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0E4B8B;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    height: 64px;
    padding: 0 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 4px 20px rgba(14, 75, 139, 0.2);
    white-space: nowrap;
}

.daikin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 75, 139, 0.3);
}

.daikin-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0E4B8B;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    height: 64px;
    padding: 0 32px;
    border-radius: 14px;
    border: 2px solid #0E4B8B;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease;
    white-space: nowrap;
}

.daikin-btn-secondary:hover {
    background: #EEF5FF;
}

/* ==========================================================================
   Daikin Partnership — Responsive
   ========================================================================== */

@media (max-width: 1150px) {
    .daikin-partner-container {
        padding: 0 40px;
    }

    .daikin-partner-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .daikin-gallery {
        height: auto;
    }

    .daikin-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .daikin-partner-section {
        padding: 64px 0;
    }

    .daikin-partner-container {
        padding: 0 20px;
    }

    .daikin-gallery {
        height: auto;
        gap: 12px;
    }

    .daikin-heading {
        font-size: 42px;
    }

    .daikin-desc {
        font-size: 18px;
    }

    .daikin-features {
        grid-template-columns: 1fr;
    }

    .daikin-feat-card:nth-child(3) {
        border-bottom: 1px solid #E5E7EB;
        margin-bottom: 24px;
    }

    .daikin-trust-strip {
        flex-wrap: wrap;
        gap: 16px;
    }

    .daikin-trust-sep {
        display: none;
    }

    .daikin-trust-item {
        flex: 0 0 45%;
        padding: 0;
    }

    .daikin-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .daikin-btn-primary,
    .daikin-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Contact & Consultation Section
   ========================================================================== */
.contact-section {
    background: #ffffff;
    width: 100%;
    padding: 120px 0;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: flex-start;
}

/* --- Left Column: Info --- */
.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0E4B8B;
    text-transform: uppercase;
}

.contact-label-line {
    width: 100%;
    height: 4px;
    background: #F6C431;
    border-radius: 2px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: #082E63;
    line-height: 1.15;
    margin-bottom: 24px;
}

.contact-subtext {
    font-size: 16.5px;
    line-height: 1.75;
    color: #5B6473;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EEF5FF;
    color: #0E4B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #082E63;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 14.5px;
    color: #5B6473;
    line-height: 1.5;
}

/* --- Right Column: Form Card --- */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 48px rgba(8, 46, 99, 0.08);
    border: 1px solid rgba(14, 75, 139, 0.08);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #082E63;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 14.5px;
    color: #5B6473;
    line-height: 1.5;
    margin-bottom: 32px;
}

.hvac-consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid #CBD5E1;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #0F172A;
    background: #ffffff;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0E4B8B;
    box-shadow: 0 0 0 4px rgba(14, 75, 139, 0.1);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #F6C431;
    color: #082E63;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.8px;
    height: 56px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
    box-shadow: 0 4px 20px rgba(246, 196, 49, 0.25);
    margin-top: 10px;
}

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

/* --- Responsive Contact Styles --- */
@media (max-width: 1150px) {
    .contact-container {
        padding: 0 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 64px 0;
    }
    .contact-container {
        padding: 0 20px;
    }
    .contact-form-card {
        padding: 32px 24px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   About Page Hero Section
   ========================================================================== */
.about-hero-section {
    background: #ffffff;
    width: 100%;
    padding: 120px 0;
}

.about-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 70px;
    align-items: center;
}

/* --- Left Column: Photograph --- */
.about-hero-image-col {
    width: 100%;
    height: 100%;
    display: flex;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 5;
    display: block;
}

/* --- Right Column: Content --- */
.about-hero-content-col {
    max-width: 650px;
    display: flex;
    flex-direction: column;
}

.about-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.about-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0E4B8B;
    text-transform: uppercase;
}

.about-label-line {
    width: 100%;
    height: 4px;
    background: #F6C431;
    border-radius: 999px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
}

.about-heading .navy-text {
    color: #082E63;
}

.about-heading .blue-text {
    color: #2B78FF;
}

.about-description {
    max-width: 600px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description p {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.8;
    color: #5B6473;
    font-weight: 400;
    margin: 0;
}

/* --- Trust Pillars --- */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
}

.about-pillar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 12px;
    border-right: 1px solid #E5E7EB;
}

.about-pillar-card:last-child {
    border-right: none;
}

.pillar-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: #EEF5FF;
    color: #0E4B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(14, 75, 139, 0.08);
}

.pillar-icon-box svg {
    width: 28px;
    height: 28px;
}

.pillar-text {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.4vw, 15px);
    font-weight: 600;
    line-height: 1.4;
    color: #082E63;
    text-align: center;
    white-space: nowrap;
}

/* --- Responsive About Styles --- */
@media (max-width: 1150px) {
    .about-hero-container {
        padding: 0 40px;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-hero-image-col {
        order: 1; /* Image first as specified */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-hero-content-col {
        order: 2; /* Content second */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 64px 0;
    }
    
    .about-hero-container {
        padding: 0 20px;
    }
    
    .about-heading {
        font-size: 42px;
    }
    
    .about-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }
    
    .about-pillar-card {
        border-right: none;
    }
    
    .about-pillar-card:nth-child(even) {
        /* Optional divider layout for 2-column mobile view */
        border-left: 1px solid #E5E7EB;
    }
    
    .pillar-text {
        white-space: normal;
    }
}

/* ==========================================================================
   Who We Are Section
   ========================================================================== */
.about-who-section {
    background: #ffffff;
    width: 100%;
    padding: 120px 0 60px 0;
}

.about-who-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 60px;
    align-items: center;
}

/* --- Left Column: Image --- */
.about-who-image-col {
    width: 100%;
    display: flex;
}

.about-who-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 5;
    display: block;
}

/* --- Right Column: Content --- */
.about-who-content-col {
    max-width: 680px;
    display: flex;
    flex-direction: column;
}

.about-who-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.about-who-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0E4B8B;
    text-transform: uppercase;
}

.about-who-label-line {
    width: 120px;
    height: 4px;
    background: #F6C431;
    border-radius: 999px;
    margin-bottom: 32px;
}

.about-who-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: #082E63;
    max-width: 700px;
    margin: 0 0 28px 0;
}

.about-who-description {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-who-description p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    color: #5B6473;
    font-weight: 400;
    margin: 0;
}

/* --- Capability Cards --- */
.about-who-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-who-card {
    background: #F8FAFC;
    padding: 32px 24px;
    border-radius: 22px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    border: 1px solid rgba(8, 46, 99, 0.03);
}

.about-who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-who-card-icon {
    width: 72px;
    height: 72px;
    color: #0E4B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.about-who-card-icon svg {
    width: 64px;
    height: 64px;
}

.about-who-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #082E63;
    margin: 0;
}

.about-who-card-accent {
    width: 38px;
    height: 3px;
    background: #F6C431;
    border-radius: 999px;
    margin: 3px auto 6px auto;
}

.about-who-card-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #5B6473;
    margin: 0;
}

/* --- Responsive Who We Are --- */
@media (max-width: 1150px) {
    .about-who-container {
        padding: 0 40px;
    }
    
    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-who-image-col {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-who-content-col {
        order: 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-who-section {
        padding: 80px 0;
    }
    
    .about-who-container {
        padding: 0 20px;
    }
    
    .about-who-heading {
        font-size: 42px;
    }
    
    .about-who-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-who-card {
        min-height: auto;
    }
}

/* ==========================================================================
   Where Our Solutions Perform Section
   ========================================================================== */
.solutions-perform-section {
    width: 100%;
    background: #ffffff;
    padding: 0 0 120px 0;
}

.solutions-perform-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Area */
.solutions-perform-header {
    text-align: center;
    margin-bottom: 80px;
}

.solutions-perform-eyebrow {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0E4B8B;
    margin-bottom: 12px;
    display: block;
}

.solutions-perform-accent-line {
    width: 100px;
    height: 4px;
    background: #F6C431;
    border-radius: 999px;
    margin: 0 auto 24px auto;
}

.solutions-perform-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px auto;
}

.solutions-perform-heading .navy-text {
    color: #082E63;
}

.solutions-perform-heading .blue-text {
    color: #2B78FF;
}

.solutions-perform-subtext {
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.8;
    color: #64748B;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Card Design */
.showcase-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-img-area {
    height: 400px;
    width: 100%;
    position: relative;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Icon */
.showcase-floating-icon {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 24px auto;
    position: relative;
    z-index: 2;
}

/* Card Typography & Content */
.showcase-content {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 700;
    color: #082E63;
    text-align: center;
    margin: 0 0 12px 0;
    white-space: nowrap;
}

.showcase-accent-divider {
    width: 50px;
    height: 3px;
    background: #F6C431;
    border-radius: 999px;
    margin: 0 auto 16px auto;
}

.showcase-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748B;
    text-align: center;
    margin: 0;
}

/* Closing Statement */
.solutions-closing-statement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-closing-accent-line {
    width: 4px;
    height: 80px;
    background: #F6C431;
    flex-shrink: 0;
}

.solutions-closing-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
}

.solutions-closing-text .navy-text {
    color: #082E63;
}

.solutions-closing-text .blue-text {
    color: #2B78FF;
    display: block;
}

/* Responsive showcase perform */
@media (max-width: 1400px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .showcase-title {
        font-size: 20px;
        white-space: normal;
    }
}

@media (max-width: 900px) {
    .solutions-perform-section {
        padding: 80px 0;
    }
    .solutions-perform-heading {
        font-size: 36px;
    }
    .solutions-perform-subtext {
        font-size: 15px;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .solutions-closing-statement {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .solutions-closing-accent-line {
        width: 80px;
        height: 4px;
    }
    .solutions-closing-text {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .solutions-perform-container {
        padding: 0 20px;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   Technology Partnership / Powered By Daikin Innovation Section
   ========================================================================== */
.daikin-partnership-section {
    width: 100%;
    background: #ffffff;
    padding: 120px 0;
    border-top: 1px solid #E5E7EB;
}

.daikin-partnership-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.daikin-partnership-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    align-items: start;
}

/* LEFT COLUMN: Visual Showcase */
.daikin-left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.daikin-hero-image-wrap {
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.daikin-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Certification Badge */
.daikin-floating-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    max-width: 200px;
    text-align: center;
    border: 1px solid rgba(14, 75, 139, 0.06);
}

.daikin-badge-logo {
    width: 130px;
    height: auto;
}

.daikin-badge-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.daikin-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.daikin-badge-auth {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0E4B8B;
}

.daikin-badge-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Secondary Technology Cards */
.daikin-sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.daikin-sec-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(8, 46, 99, 0.04);
    display: flex;
    flex-direction: column;
}

.daikin-sec-img-area {
    height: 140px;
    width: 100%;
}

.daikin-sec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.daikin-sec-meta {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.daikin-sec-icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #EEF5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E4B8B;
}

.daikin-sec-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #082E63;
    line-height: 1.3;
}

/* RIGHT COLUMN: Content Area */
.daikin-right-col {
    display: flex;
    flex-direction: column;
}

.daikin-right-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
}

.daikin-right-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0E4B8B;
    display: block;
}

.daikin-right-accent-line {
    width: 100%;
    height: 4px;
    background: #F6C431;
    border-radius: 999px;
}

.daikin-right-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
}

.daikin-right-heading .navy-text {
    color: #082E63;
}

.daikin-right-heading .blue-text {
    color: #2B78FF;
}

.daikin-right-desc-block {
    display: grid;
    grid-template-columns: 1fr auto 180px;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.daikin-desc-divider {
    width: 1px;
    height: 80px;
    background-color: #E2E8F0;
    align-self: center;
}

.daikin-right-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.daikin-right-paragraphs p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #5B6473;
    margin: 0;
}

.daikin-inline-logo {
    width: 180px;
    padding: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daikin-inline-logo-img {
    width: 100%;
    height: auto;
}

/* Feature Grid */
.daikin-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.daikin-feat-card-alt {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(8, 46, 99, 0.02);
}

.daikin-feat-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E4B8B;
    box-shadow: 0 4px 12px rgba(8, 46, 99, 0.04);
}

.daikin-feat-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #082E63;
    margin: 0;
    line-height: 1.3;
}

.daikin-feat-card-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.6;
    color: #5B6473;
    margin: 0;
}

/* TRUST STRIP */
.daikin-trust-strip-alt {
    grid-column: span 2;
    background: #F8FAFC;
    border-radius: 24px;
    padding: 32px 40px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(8, 46, 99, 0.02);
}

.daikin-trust-left {
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid #E2E8F0;
    padding-right: 40px;
}

.daikin-trust-badge-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #EEF5FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E4B8B;
}

.daikin-trust-left-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #082E63;
    margin-bottom: 6px;
}

.daikin-trust-left-text p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #5B6473;
    margin: 0;
}

.daikin-trust-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.daikin-trust-col-icon {
    color: #0E4B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.daikin-trust-col-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #082E63;
    margin-bottom: 4px;
}

.daikin-trust-col-text p {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.4;
    color: #5B6473;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .daikin-partnership-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .daikin-trust-strip-alt {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .daikin-trust-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .daikin-partnership-section {
        padding: 80px 0;
    }
    
    .daikin-hero-image-wrap {
        height: 450px;
    }

    .daikin-sec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .daikin-right-desc-block {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .daikin-inline-logo {
        margin: 0 auto;
    }

    .daikin-feat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .daikin-partnership-container {
        padding: 0 20px;
    }

    .daikin-hero-image-wrap {
        height: 320px;
    }

    .daikin-floating-badge {
        padding: 16px;
        top: 16px;
        left: 16px;
        max-width: 140px;
    }

    .daikin-badge-logo {
        width: 90px;
    }
}

/* ==========================================================================
   Solution Detail Page Styles
   ========================================================================== */
.solution-detail-section {
    width: 100%;
    background: #ffffff;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 68px;
}

.solution-detail-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.solution-detail-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
}

/* LEFT COLUMN: Visual and Badge */
.solution-image-col {
    display: flex;
    flex-direction: column;
}

.solution-hero-image-wrap {
    height: 610px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.solution-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-floating-badge {
    display: none; /* Removed Daikin overlay tag */
}

/* RIGHT COLUMN: Content */
.solution-content-col {
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

.solution-label-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.solution-eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0E4B8B;
    display: block;
}

.solution-label-accent {
    width: 90px;
    height: 4px;
    background: #F6C431;
    border-radius: 999px;
}

.solution-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    margin-top: 0;
    margin-bottom: 26px;
}

.solution-heading .navy-text {
    color: #082E63;
}

.solution-heading .blue-text {
    color: #2B78FF;
}

.solution-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.solution-description p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.75;
    color: #5B6473;
    margin: 0;
}

/* Benefits Grid */
.solution-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.solution-benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-benefit-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: #F8FAFC;
    color: #0E4B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(8, 46, 99, 0.02);
}

.solution-benefit-icon-box svg {
    width: 30px;
    height: 30px;
}

.solution-benefit-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: #082E63;
    margin: 0;
}

/* Applications Strip */
.solution-applications-strip {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 32px 42px;
    border: 1px solid rgba(8, 46, 99, 0.02);
}

.sol-app-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(6, 1fr);
    align-items: center;
    gap: 24px;
}

.central-ac-section .sol-app-grid,
.chiller-plants-section .sol-app-grid,
.industrial-ventilation-section .sol-app-grid,
.ductable-ac-section .sol-app-grid,
.cassette-ac-section .sol-app-grid,
.split-ac-section .sol-app-grid {
    grid-template-columns: 1.8fr repeat(5, 1fr);
}

.central-ac-section .sol-app-item,
.chiller-plants-section .sol-app-item,
.industrial-ventilation-section .sol-app-item,
.ductable-ac-section .sol-app-item,
.cassette-ac-section .sol-app-item,
.split-ac-section .sol-app-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
}

.central-ac-section .sol-app-name,
.chiller-plants-section .sol-app-name,
.industrial-ventilation-section .sol-app-name,
.ductable-ac-section .sol-app-name,
.cassette-ac-section .sol-app-name,
.split-ac-section .sol-app-name {
    font-size: 22px;
    font-weight: 600;
    color: #082E63;
    line-height: 1.25;
}

.sol-app-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sol-app-left h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: #082E63;
    margin: 0;
}

.sol-app-underline {
    width: 55px;
    height: 3px;
    background: #F6C431;
    border-radius: 999px;
}

.sol-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.sol-app-icon {
    color: #0E4B8B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-app-icon svg {
    width: 32px;
    height: 32px;
}

.sol-app-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    line-height: 1.3;
}

/* RESPONSIVE DESIGN - Solutions Detail */
@media (max-width: 1200px) {
    .solution-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .solution-heading {
        font-size: 48px;
    }

    .sol-app-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .central-ac-section .sol-app-grid,
    .chiller-plants-section .sol-app-grid,
    .industrial-ventilation-section .sol-app-grid,
    .ductable-ac-section .sol-app-grid,
    .cassette-ac-section .sol-app-grid,
    .split-ac-section .sol-app-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .sol-app-left {
        grid-column: span 3;
        align-items: center;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .solution-benefit-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .solution-detail-section {
        padding: 50px 0;
    }

    .solution-hero-image-wrap {
        height: 380px;
    }

    .solution-heading {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 18px;
    }

    .solution-description p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .solution-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solution-benefit-icon-box {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .solution-benefit-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .solution-benefit-title {
        font-size: 18px;
    }

    .sol-app-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    .central-ac-section .sol-app-grid,
    .chiller-plants-section .sol-app-grid,
    .industrial-ventilation-section .sol-app-grid,
    .ductable-ac-section .sol-app-grid,
    .cassette-ac-section .sol-app-grid,
    .split-ac-section .sol-app-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .sol-app-left {
        grid-column: span 2 !important;
    }

    .sol-app-left h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .solution-detail-container {
        padding: 0 16px;
        gap: 36px;
    }

    .solution-hero-image-wrap {
        height: 260px;
        border-radius: 16px;
    }

    .solution-heading {
        font-size: clamp(24px, 7vw, 30px);
    }

    .sol-app-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .central-ac-section .sol-app-grid,
    .chiller-plants-section .sol-app-grid,
    .industrial-ventilation-section .sol-app-grid,
    .ductable-ac-section .sol-app-grid,
    .cassette-ac-section .sol-app-grid,
    .split-ac-section .sol-app-grid {
        grid-template-columns: 1fr !important;
    }

    .central-ac-section .sol-app-item,
    .chiller-plants-section .sol-app-item,
    .industrial-ventilation-section .sol-app-item,
    .ductable-ac-section .sol-app-item,
    .cassette-ac-section .sol-app-item,
    .split-ac-section .sol-app-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .sol-app-left {
        grid-column: span 1 !important;
    }

    .sol-app-left h2 {
        font-size: 20px;
    }
}