/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.7
	Stable tag: 3.4.7
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/


   /* ===========================
           DESIGN SYSTEM & VARIABLES
        =========================== */
        :root {
            --bg-dark: #0a0a0a;
            --bg-dark-2: #111111;
            --bg-light: #ffffff;
            --bg-offwhite: #f5f4f0;
            --accent: #c9a84c;
            --accent-dark: #a07830;
            --text-white: #ffffff;
            --text-light: #cccccc;
            --text-muted: #888888;
            --text-dark: #1a1a1a;
            --text-dark-2: #444444;
            --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e8c876 50%, #c9a84c 100%);
            --font-serif: 'Cormorant Garamond', Georgia, serif;
            --font-sans: 'Inter', sans-serif;
            --ease: cubic-bezier(0.23, 1, 0.32, 1);
            --transition: all 0.45s var(--ease);
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.75;
            overflow-x: hidden;
        }

        ::selection { background: var(--accent); color: #000; }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

        img { display: block; max-width: 100%; }
        a { text-decoration: none; }

        /* ===========================
           TYPOGRAPHY
        =========================== */
        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        /* ===========================
           LAYOUT UTILITIES
        =========================== */
        .container {
            margin: 0 auto;
            padding: 0 6%;
        }

        section { position: relative; }

        .section-dark  { background: var(--bg-dark);   color: var(--text-light); }
        .section-dark2 { background: var(--bg-dark-2); color: var(--text-light); }
        .section-light { background: var(--bg-light);  color: var(--text-dark); }
        .section-offwhite { background: var(--bg-offwhite); color: var(--text-dark); }

        /* headings adjust in light sections */
        .section-light h1,
        .section-light h2,
        .section-light h3,
        .section-light h4 { color: var(--text-dark); }

        .section-light p { color: var(--text-dark-2); }

        .section-offwhite h1,
        .section-offwhite h2,
        .section-offwhite h3,
        .section-offwhite h4 { color: var(--text-dark); }

        .section-offwhite p { color: var(--text-dark-2); }

        /* ===========================
           BUTTONS
        =========================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 38px;
            font-family: var(--font-sans);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            background: var(--gold-gradient);
            color: #000 !important;
        }

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(201, 168, 76, 0.35);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--accent);
            color: var(--accent) !important;
        }

        .btn-outline:hover {
            background: var(--accent);
            color: #000 !important;
            box-shadow: 0 12px 35px rgba(201, 168, 76, 0.3);
        }

        .btn-dark-outline {
            background: transparent;
            border: 1.5px solid var(--text-dark);
            color: var(--text-dark) !important;
        }

        .btn-dark-outline:hover {
            background: var(--text-dark);
            color: #fff !important;
        }

        /* ===========================
           ACCENT LINE & TAGLINE
        =========================== */
        .accent-line {
            width: 50px;
            height: 2px;
            background: var(--accent);
            margin-bottom: 24px;
        }

        .accent-line.center { margin-left: auto; margin-right: auto; }

        .tagline {
            display: block;
            font-family: var(--font-sans);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            margin-bottom: 18px;
        }

        /* ===========================
           HEADER / NAV
        =========================== */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 6%;
            transition: var(--transition);
        }

        #header.scrolled {
            background: rgba(255,255,255,0.97);
            padding: 12px 6%;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
            backdrop-filter: blur(15px);
        }

        #header.scrolled .logo,
        #header.scrolled nav a { color: var(--text-dark); }
        #header.scrolled .logo span { color: var(--accent); }
        #header.scrolled .btn { /* intake btn stays gold */ }

        .logo {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--text-white);
            text-transform: uppercase;
            white-space: nowrap;
        }
        .logo span { color: var(--accent); }

        nav ul {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }

        nav a {
            font-family: var(--font-sans);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgb(209 176 86);
            transition: color 0.3s;
            white-space: nowrap;
        }
        nav a:hover { color: var(--accent); }

        /* Dropdown */
        .nav-item { position: relative; }
        .dropdown {
            position: absolute;
            top: calc(100% + 20px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #fff;
            min-width: 220px;
            border-top: 3px solid var(--accent);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown li { list-style: none; }
        .dropdown a {
            display: block;
            padding: 12px 22px;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: none;
            color: var(--text-dark) !important;
            transition: padding 0.2s, color 0.2s;
        }
        .dropdown a:hover { color: var(--accent) !important; padding-left: 28px; }

        .intake-btn { padding: 12px 24px; font-size: 11px; }

        /* ===========================
           HERO SECTION
        =========================== */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: url('https://integritycustombuilt.com/wp-content/uploads/2026/03/Mediterranean-scaled.jpg') center center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                rgba(0,0,0,0.5) 0%,
                rgba(0,0,0,0.45) 60%,
                rgba(0,0,0,0.7) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 5%;
        }

        .hero-content h1 {
            font-size: 58px;
            color: #fff;
            margin-bottom: 24px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.4);
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            max-width: 620px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .hero-cta-wrapper { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

        .bottom-scroll-btn {
            position: absolute;
            bottom: 38px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.6);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: color 0.3s;
        }
        .bottom-scroll-btn:hover { color: var(--accent); }
        .bottom-scroll-btn i {
            font-size: 16px;
            animation: float 2.5s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }

        /* ===========================
           INTRO SECTION (LIGHT)
        =========================== */
        .intro-section {
            padding: 80px 0;
        }
        .intro-section h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 28px;
        }
        .intro-section p {
            font-size: 1.1rem;
            max-width: 680px;
            margin: 0 auto 42px;
            line-height: 1.85;
        }

        /* ===========================
           CHOICES SECTION (DARK)
        =========================== */
        .choices-section {
            padding: 120px 0;
            background: var(--bg-dark);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: clamp(2.2rem, 4.5vw, 3.8rem);
            color: var(--text-white);
            flex-shrink: 0;
        }
        .section-header .section-header-right {
            max-width: 420px;
            text-align: right;
        }
        .section-header .section-header-right p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .section-header .section-header-right a {
            color: var(--accent);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .section-header .section-header-right a:hover { opacity: 0.75; }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .option-card {
            position: relative;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
        }

        .option-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s var(--ease);
        }
        .option-card:hover img { transform: scale(1.08); }

        .option-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
            transition: background 0.4s;
        }

        .option-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            z-index: 3;
        }
        .option-content h3 {
            font-size: 1.9rem;
            color: #fff;
            margin-bottom: 10px;
        }
        .option-content p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.72);
            max-width: 320px;
            line-height: 1.65;
        }

        /* ===========================
           PARTNER SECTION (LIGHT)
        =========================== */
        .partner-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 570px;
            padding: 0;
        }

        .partner-image {
            overflow: hidden;
            position: relative;
        }
        .partner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s var(--ease);
        }
        .partner-image:hover img { transform: scale(1.04); }

        .partner-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 8%;
            background: var(--bg-offwhite);
        }
        .partner-content h2 {
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            color: var(--text-dark);
            margin-bottom: 28px;
        }
        .partner-content p {
            font-size: 1.05rem;
            color: var(--text-dark-2);
            margin-bottom: 42px;
            line-height: 1.85;
            max-width: 440px;
        }

        /* ===========================
           SOLUTION SECTION (DARK)
        =========================== */
        .solution-section {
            padding: 80px 0;
            background: var(--bg-dark-2);
        }
        .solution-section .intro-text {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 70px;
        }
        .solution-section .intro-text h2 {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
            color: var(--text-white);
            margin-bottom: 22px;
        }
        .solution-section .intro-text p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .solution-item {
            padding: 55px 38px;
            border-right: 1px solid rgba(255,255,255,0.06);
            transition: background 0.35s;
        }
        .solution-item:last-child { border-right: none; }
        .solution-item:hover { background: rgba(255,255,255,0.03); }

        .solution-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            background: rgba(201,168,76,0.12);
            border-radius: 50%;
            margin-bottom: 28px;
        }
        .solution-icon i {
            font-size: 22px;
            color: var(--accent);
        }

        .solution-item h3 {
            font-size: 1.55rem;
            color: var(--text-white);
            margin-bottom: 14px;
        }
        .solution-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ===========================
           SLIDER SECTION
        =========================== */
        .slider-section {
            padding: 0;
            background: var(--bg-dark);
        }

        .swiper {
            width: 100%;
            height: 75vh;
            min-height: 450px;
        }

        .swiper-slide { overflow: hidden; }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #fff !important;
            width: 60px;
            height: 60px;
            background: rgba(0,0,0,0.35);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            backdrop-filter: blur(8px);
            transition: var(--transition);
        }
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #000 !important;
        }
        .swiper-button-next::after,
        .swiper-button-prev::after { font-size: 16px !important; font-weight: 700; }

        /* ===========================
           CONTACT SECTION (LIGHT)
        =========================== */
        .contact-section {
            padding: 80px 0;
        }

        .contact-section .section-intro {
            margin-bottom: 65px;
        }
        .contact-section .section-intro h2 {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            margin-bottom: 14px;
        }
        .contact-section .section-intro p {
            font-size: 1rem;
            color: var(--text-dark-2);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: start;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 30px;
        }

        .form-group { margin-bottom: 32px; }
        .form-group.full-width { grid-column: 1 / -1; }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1.5px solid #ddd;
            padding: 14px 0;
            font-family: var(--font-sans);
            font-size: 15px;
            color: var(--text-dark);
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: #aaa; font-size: 14px; }
        .form-group input:focus,
        .form-group textarea:focus { border-bottom-color: var(--accent); }
        .form-group textarea { resize: vertical; min-height: 130px; }

        .map-wrapper {
            height: 480px;
            background: #f0efeb;
            position: relative;
            overflow: hidden;
        }
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
        }
        .map-placeholder i { font-size: 70px; }

        .map-info {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: #fff;
            padding: 28px 32px;
            border-left: 4px solid var(--accent);
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        .map-info h4 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .map-info p {
            font-size: 0.9rem;
            color: var(--text-dark-2);
            margin-bottom: 4px;
        }
        .map-info .phone {
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
            margin-top: 12px;
        }

        /* ===========================
           FOOTER (DARK)
        =========================== */
        footer {
            background: var(--bg-dark);
            padding: 90px 6% 50px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 80px;
            padding-bottom: 60px;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .footer-col-left { 
            text-align: left; 
        }

        .footer-col-right { 
            text-align: right; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
        }

        .footer-logo {
            display: block;
            font-family: var(--font-serif);
            font-size: 26px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .footer-logo span { color: var(--accent); }

        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 450px;
            margin-bottom: 32px;
        }

        .social-links {
            display: flex;
            gap: 18px;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 15px;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #000;
            transform: translateY(-3px);
        }

        .footer-col-right { display: flex; flex-direction: column; justify-content: center; }
        .footer-col-right h4 {
            font-family: var(--font-sans);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 28px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }
        .footer-contact-item i {
            color: var(--accent);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .footer-contact-item span {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.5;
        }
        .footer-contact-item.large span {
            font-family: var(--font-serif);
            font-size: 28px;
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        /* ===========================
           SAFETY & EFFICIENCY SECTION
        =========================== */
        .safety-section {
            padding: 80px 40px 150px 40px;
            background: #fff;
        }
        .safety-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr 1fr;
            gap: 40px;
            align-items: center;
            margin: 0 auto;
            padding: 0 4%;
        }
        .safety-images-col {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
            height: 560px;
        }
        .safety-images-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 4px;
        }
        .safety-content {
            padding: 0 20px;
            text-align: left;
        }
        .safety-brand-logo {
            width: 130px;
            margin-bottom: 24px;
        }
        .safety-content h2 {
            font-family: var(--font-sans);
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.25;
            margin-bottom: 32px;
        }
        .safety-checklist {
            list-style: none;
            padding: 0;
        }
        .safety-checklist li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 22px;
            font-size: 0.95rem;
            color: #333;
            line-height: 1.6;
        }
        .safety-checklist li::before {
            content: '✓';
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .safety-checklist li strong {
            font-weight: 700;
            color: #1a1a1a;
        }
        /* ===========================
           SPLIT INTRO SECTION
        =========================== */
        .split-intro {
            position: relative;
            width: 100%;
            min-height: 96vh;
            display: flex;
            align-items: center;
            background: #fff;
            overflow: hidden;
        }

        .split-intro-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 73%;
            height: 100%;
            z-index: 1;
        }

        .split-intro-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .split-intro-content {
            position: relative;
            z-index: 2;
            background: #fff;
            width: 42%; 
            min-height: 96vh;
            padding: 80px 5% 80px 6%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-top-right-radius: 610px 1000px;
            border-bottom-right-radius: 610px 1000px;
            box-shadow: 30px 0 60px rgba(0,0,0,0.05);
        }

        .split-intro-logo {
            width: 140px;
            margin-bottom: 40px;
        }

        .split-intro-content h2 {
            font-family: var(--font-sans);
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .split-intro-content .subheading {
            font-family: var(--font-sans);
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }

        .split-intro-divider {
            width: 45px;
            height: 2px;
            background: #1a1a1a;
            margin-bottom: 40px;
        }

        .split-intro-content h3 {
            font-family: var(--font-sans);
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 18px;
            line-height: 1.4;
        }

        .split-intro-content .description {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: #666;
            max-width: 320px;
            line-height: 1.6;
        }

/* ===========================
           PHOTO COLLAGE SECTIONS
        =========================== */
        .photo-collage {
            padding: 0;
            background: #fff;
        }
        .collage-grid-1 {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            grid-template-rows: auto;
            height: 560px;
            gap: 4px;
        }
        .collage-main {
            height: 100%;
            overflow: hidden;
        }
        .collage-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .collage-main:hover img { transform: scale(1.04); }

        .collage-stack {
            display: grid;
            grid-template-rows: repeat(3, 1fr);
            gap: 4px;
        }
        .collage-stack-item {
            overflow: hidden;
        }
        .collage-stack-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }
        .collage-stack-item:hover img { transform: scale(1.05); }

        /* Collage 2 — 5-image mosaic */
        .collage-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
                grid-template-rows: 300px 300px;
    gap: 4px;
    height: 604px;
        }
        .collage-tall {
            grid-row: 1 / 3;
            overflow: hidden;
        }
        .collage-tall img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }
        .collage-tall:hover img { transform: scale(1.04); }

        .collage-cell {
            overflow: hidden;
        }
        .collage-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }
        .collage-cell:hover img { transform: scale(1.05); }
        
        /* ===========================
           RESPONSIVE
        =========================== */
        @media (max-width: 1100px) {
            .split-intro-content { width: 50%; }
            .solution-grid { grid-template-columns: repeat(2, 1fr); }
            .solution-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
        }

        @media (max-width: 900px) {
            .split-intro { flex-direction: column-reverse; min-height: auto; }
            .split-intro-content { 
                width: 100%; 
                border-radius: 0; 
                padding: 125px 0px 40px 0px; 
                min-height: auto;
                box-shadow: none;
                text-align: center;
                align-items: center;
            }
            .split-intro-divider { margin-left: auto; margin-right: auto; }
            .split-intro-bg { 
                position: relative; 
                width: 100%;  
            }
            .split-intro-bg img { height: 40%;}
             nav { display: none; }
            .partner-section { grid-template-columns: 1fr; }
            .partner-image { height: 50vw; min-height: 300px; }
            .options-grid { grid-template-columns: 1fr; }
            .contact-layout { grid-template-columns: 1fr; gap: 50px; }
            .contact-form { grid-template-columns: 1fr; }
            .form-group.full-width { grid-column: auto; }
            .footer-grid { grid-template-columns: 1fr; gap: 50px; }
            .section-header { flex-direction: column; align-items: flex-start; }
            .section-header .section-header-right { text-align: left; }
            .hero { height: 75vh; }
            .safety-layout { grid-template-columns: 1fr; }
            .safety-images-col { height: 300px; grid-template-rows: 1fr; }
            .split-intro-content h2 {font-size: 2.2rem;}
        }

        @media (max-width: 680px) {
            .hero-content h1 { font-size: 44px;  font-weight: 700; }
            .hero { height: 65vh; }
            .solution-grid { grid-template-columns: 1fr; }
            .solution-item { border-right: none; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .logo { font-size: 10px;}
            .intro-section {padding: 50px 0;}
            .swiper {
              width: 100%;
              height: 2vh;
              min-height: 170px;
            }
            .split-intro-bg img { height: 40%;}
            .safety-layout { grid-template-columns: 1fr; }
            .safety-images-col { height: 300px; grid-template-rows: 1fr; }
            .split-intro-content h2 {font-size: 2.2rem;}
        }