/* Start custom CSS for html, class: .elementor-element-3cf4594 */<style>
    /* --- FONTS & BASICS --- */
    @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;500;700&family=Roboto:wght@300;400;500&display=swap');

    .gate-container {
        font-family: 'Roboto', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f4f4f4;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* --- VARIABLES --- */
    :root {
        --gate-dark: #212121;      /* Iron/Metal Black */
        --gate-wood: #8d6e63;      /* WPC Wood Tone */
        --gate-light: #ffffff;
        --gate-accent: #d4a373;    /* Highlight */
    }

    /* --- HERO SECTION (Image 1) --- */
    .gate-hero {
        position: relative;
        height: 550px;
        background-image: url('https://punalu.com/wp-content/uploads/2026/03/blog-5-1.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end; /* Text at bottom */
        justify-content: flex-start;
        padding: 40px;
    }
    .gate-hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    }
    .hero-title-box {
        position: relative;
        z-index: 2;
        background: var(--gate-light);
        padding: 30px 40px;
        max-width: 700px;
        border-left: 8px solid var(--gate-wood);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .gate-hero h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 2.5rem;
        margin: 0;
        text-transform: uppercase;
        color: var(--gate-dark);
        line-height: 1.2;
    }
    .gate-hero span {
        display: block;
        margin-top: 10px;
        font-weight: 500;
        color: var(--gate-wood);
        letter-spacing: 1px;
    }

    /* --- INTRO --- */
    .gate-intro {
        text-align: center;
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }
    .gate-intro p { font-size: 1.1rem; color: #555; }

    /* --- SECTION: FENCE STYLES (Image 2) --- */
    .fence-styles-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0; /* Seamless look */
        margin-bottom: 60px;
    }
    .fence-img {
        background-image: url('https://punalu.com/wp-content/uploads/2026/03/blog-5-2.png');
        background-size: cover;
        background-position: center;
        min-height: 500px;
        position: relative;
    }
    .fence-content {
        background: var(--gate-dark);
        color: white;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .style-card {
        margin-bottom: 40px;
        border-left: 1px solid rgba(255,255,255,0.2);
        padding-left: 20px;
        transition: padding 0.3s;
    }
    .style-card:hover { padding-left: 30px; border-color: var(--gate-accent); }
    .style-card h2 {
        font-family: 'Oswald', sans-serif;
        color: var(--gate-accent);
        font-size: 1.8rem;
        margin-top: 0;
    }
    .style-card ul { padding-left: 20px; color: #ccc; }

    /* --- SECTION: GATES & PRIVACY (Image 3) --- */
    .gate-privacy-section {
        max-width: 1200px;
        margin: 0 auto 80px auto;
        padding: 20px;
    }
    .privacy-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        align-items: center;
    }
    .privacy-img img {
        width: 100%;
        border: 10px solid white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .privacy-text h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        color: var(--gate-dark);
        border-bottom: 3px solid var(--gate-wood);
        display: inline-block;
        margin-bottom: 20px;
    }
    .gate-types {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    .gate-type-item {
        background: white;
        padding: 15px;
        border: 1px solid #ddd;
        text-align: center;
        font-weight: 500;
        font-size: 0.9rem;
    }

    /* --- WEATHER & MAINTENANCE (Grid) --- */
    .perf-section {
        background: white;
        padding: 60px 20px;
        text-align: center;
    }
    .perf-title { margin-bottom: 50px; }
    .perf-title h2 { font-family: 'Oswald', sans-serif; font-size: 2.2rem; }
    
    .perf-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .perf-box {
        border: 2px solid #eee;
        padding: 30px;
        transition: 0.3s;
    }
    .perf-box:hover {
        border-color: var(--gate-wood);
        background: #fafafa;
        transform: translateY(-5px);
    }
    .perf-icon { font-size: 2rem; margin-bottom: 15px; display: block; color: var(--gate-wood); }
    .perf-box h3 { font-family: 'Oswald', sans-serif; margin: 10px 0; }

    /* --- FAQ (Industrial Style) --- */
    .gate-faq {
        max-width: 800px;
        margin: 60px auto;
        padding: 0 20px;
    }
    details.gate-details {
        background: #fff;
        margin-bottom: 15px;
        border-left: 5px solid #ccc;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    details[open] { border-left-color: var(--gate-dark); }
    summary.gate-summary {
        font-weight: bold;
        cursor: pointer;
        list-style: none;
        color: var(--gate-dark);
    }
    .gate-ans { margin-top: 10px; font-size: 0.95rem; color: #666; }

    /* --- FOOTER --- */
    .gate-footer {
        background: var(--gate-dark);
        color: white;
        padding: 50px;
        text-align: center;
        border-top: 5px solid var(--gate-accent);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .gate-hero { height: 400px; align-items: center; justify-content: center; }
        .hero-title-box { width: 90%; text-align: center; padding: 20px; }
        .gate-hero h1 { font-size: 1.8rem; }
        .fence-styles-wrapper { grid-template-columns: 1fr; }
        .fence-img { height: 300px; min-height: auto; order: -1; } /* Image on top */
        .privacy-grid { grid-template-columns: 1fr; }
        .gate-types { grid-template-columns: 1fr; }
    }
</style>/* End custom CSS */