/* ========== Outdoor Lighting Page Template Styles ========== */

/* ========== CSS Variables ========== */
:root {
    --color-primary: #FF8C00;
    --color-primary-dark: #E67300;
    --color-heading: #222222;
    --color-heading-alt: #333333;
    --color-text: #666666;
    --color-text-light: #999999;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f8f8f8;
    --color-border: #e0e0e0;
    --color-footer-gray: #666666;

    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;
    --font-size-h4: 18px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-weight-heading: 700;
    --font-weight-body: 400;
    --line-height: 1.6;

    --spacing-container: 1200px;
    --spacing-module-large: 80px;
    --spacing-module-medium: 60px;
    --spacing-module-small: 40px;
    --spacing-gap: 30px;
    --container-padding: 15px;
}

/* ========== Global Styles ========== */
.page-outdoor-lighting {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: var(--line-height);
}

.page-outdoor-lighting .elementor-container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: var(--font-size-body);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--color-heading);
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.btn-submit {
    width: 100%;
    background-color: var(--color-footer-gray);
    color: #ffffff;
}

.btn-submit:hover {
    background-color: #555555;
}

/* ========== Section 1: Hero ========== */
.outdoor-lighting-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outdoor-lighting-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.outdoor-lighting-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.outdoor-lighting-hero .hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 100%;
}

.outdoor-lighting-hero .hero-content-left {
    flex: 1;
}

.outdoor-lighting-hero .hero-content-right {
    flex-shrink: 0;
}

.outdoor-lighting-hero .hero-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-heading);
    color: #ffffff;
    margin: 0;
}

.outdoor-lighting-hero .hero-content-right .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    white-space: nowrap;
}

/* ========== Section 2: Product Grid ========== */
.product-grid-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.product-grid-section .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 20px;
}

.product-grid-section .section-description {
    color: var(--color-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.product-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-grid-section .product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-grid-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-grid-section .product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-grid-section .product-card h3 {
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--color-heading-alt);
    margin: 15px 0;
    padding: 0 10px;
}

/* ========== Section 3: Why We Love ========== */
.why-love-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.why-love-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-love-content {
    flex: 1;
}

.why-love-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.why-love-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

.why-love-image {
    flex: 1;
}

.why-love-image .love-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 4: Outdoor Lighting Styles ========== */
.lighting-styles-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.styles-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.styles-image {
    flex: 1;
}

.styles-image .styles-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.styles-content {
    flex: 1;
}

.styles-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.styles-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

/* ========== Section 5: How to Choose ========== */
.how-to-choose-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.choose-part-1,
.choose-part-2 {
    margin-bottom: var(--spacing-module-large);
}

.choose-part-2 {
    margin-bottom: 0;
}

.choose-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.choose-wrapper.reverse {
    flex-direction: row-reverse;
}

.choose-content {
    flex: 1;
}

.choose-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.choose-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.choose-image {
    flex: 1;
}

.choose-image .choose-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 6: Types of Porch Lighting ========== */
.types-of-porch-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.porch-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.porch-content {
    flex: 1;
}

.porch-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.porch-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

.porch-image {
    flex: 1;
}

.porch-image .porch-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 7: Outdoor Wall Lights ========== */
.outdoor-wall-lights-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.wall-lights-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.wall-lights-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.wall-lights-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.wall-lights-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 40px;
}

.wall-lights-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wall-light-item h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading-alt);
    margin-bottom: 15px;
}

.wall-light-item p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin: 0;
}

.wall-lights-image {
    flex: 0 0 60%;
    max-width: 60%;
}

.wall-lights-image .wall-lights-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 8: Barn & Ceiling Lights ========== */
.barn-ceiling-lights-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.barn-lights-part,
.ceiling-lights-part {
    margin-bottom: var(--spacing-module-large);
}

.ceiling-lights-part {
    margin-bottom: 0;
}

.barn-ceiling-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.barn-ceiling-image {
    flex: 0 0 60%;
    max-width: 60%;
}

.barn-ceiling-image .barn-ceiling-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.barn-ceiling-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.barn-ceiling-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.barn-ceiling-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

/* ========== Section 9: Flush & Chandeliers ========== */
.flush-chandeliers-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.flush-chandeliers-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.flush-chandeliers-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.flush-chandeliers-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.flush-chandeliers-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.flush-chandeliers-image {
    flex: 0 0 60%;
    max-width: 60%;
}

.flush-chandeliers-image .flush-chandeliers-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 10: Pendant & Landscape Lights ========== */
.pendant-landscape-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.pendant-landscape-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pendant-landscape-image {
    flex: 0 0 60%;
    max-width: 60%;
    order: 1;
}

.pendant-landscape-image .pendant-landscape-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.pendant-landscape-content {
    flex: 0 0 40%;
    max-width: 40%;
    order: 2;
}

.pendant-landscape-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.pendant-landscape-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

/* ========== Section 11: Flood & Spot Lights & Post Lights ========== */
.flood-post-lights-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.flood-post-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.flood-post-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.flood-post-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.flood-post-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.flood-post-image {
    flex: 0 0 60%;
    max-width: 60%;
}

.flood-post-image .flood-post-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 12: Bollard Lights & Step Lighting ========== */
.bollard-step-lights-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.bollard-step-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.bollard-step-image {
    flex: 0 0 60%;
    max-width: 60%;
    order: 1;
}

.bollard-step-image .bollard-step-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.bollard-step-content {
    flex: 0 0 40%;
    max-width: 40%;
    order: 2;
}

.bollard-step-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.bollard-step-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.bollard-step-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.bollard-step-image {
    flex: 1;
}

.bollard-step-image .bollard-step-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.bollard-step-content {
    flex: 1;
}

.bollard-step-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.bollard-step-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

/* ========== Section 13: Extra Considerations ========== */
.extra-considerations-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.extra-considerations-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.extra-considerations-content {
    flex: 1;
}

.extra-considerations-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.extra-considerations-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.extra-considerations-image {
    flex: 1;
}

.extra-considerations-image .extra-considerations-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 14: Lighting Options ========== */
.lighting-options-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
    text-align: center;
}

.lighting-options-section .section-title-large,
.types-of-porch-section .section-title-large {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 15px;
    text-align: center;
}

.lighting-options-section .section-subtitle,
.types-of-porch-section .section-subtitle {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-body);
    color: var(--color-heading-alt);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
}

.lighting-options-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

/* ========== Section 15: Is it Wet or Damp? ========== */
.wet-damp-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.wet-damp-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.wet-damp-content {
    flex: 1;
}

.wet-damp-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.wet-damp-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 20px;
}

.wet-damp-description:last-child {
    margin-bottom: 0;
}

.wet-damp-image {
    flex: 1;
}

.wet-damp-image .wet-damp-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 16: Durability ========== */
.durability-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.durability-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.durability-image {
    flex: 1;
}

.durability-image .durability-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.durability-content {
    flex: 1;
}

.durability-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.durability-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 20px;
}

.durability-description:last-child {
    margin-bottom: 0;
}

/* ========== Section 17: Versatile Styles ========== */
.versatile-styles-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.versatile-styles-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.versatile-styles-content {
    flex: 1;
}

.versatile-styles-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.versatile-styles-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 20px;
}

.versatile-styles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.style-item h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--color-heading-alt);
    margin-bottom: 10px;
}

.style-item p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin: 0;
}

.versatile-styles-image {
    flex: 1;
}

.versatile-styles-image .versatile-styles-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 18: Site Lighting & Address Lights ========== */
.site-address-lights-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.site-address-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.site-address-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.site-address-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.site-address-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.address-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-item h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading-alt);
    margin-bottom: 10px;
}

.address-item p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin: 0;
}

.site-address-image {
    flex: 0 0 60%;
    max-width: 60%;
}

.site-address-image .site-address-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 19: Rope Lights & Emergency Lights ========== */
.rope-emergency-lights-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.rope-emergency-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.rope-emergency-content {
    flex: 0 0 40%;
    max-width: 40%;
}

.rope-emergency-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    text-align: left;
}

.rope-emergency-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

.rope-emergency-image {
    flex: 0 0 60%;
    max-width: 60%;
}

.rope-emergency-image .rope-emergency-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 20: Choose The Fitting Lighting ========== */
.choose-fitting-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.choose-fitting-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.choose-fitting-video {
    flex: 1;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.video-container .youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.choose-fitting-content {
    flex: 1;
}

.choose-fitting-content .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
}

.choose-fitting-description {
    color: var(--color-text);
    line-height: 1.8;
    font-size: var(--font-size-body);
    margin-bottom: 30px;
}

/* ========== Section 22: Intended Use ========== */
/* ========== Section 21: FAQ ========== */
.faq-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

/* ========== Section 5: More Types ========== */
.more-types-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-medium) 0;
}

.more-types-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.more-types-content {
    flex: 1;
}

.more-types-content h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading-alt);
    margin-bottom: 15px;
    margin-top: 30px;
}

.more-types-content h3:first-child {
    margin-top: 0;
}

.more-types-content p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.more-types-image {
    width: 50%;
}

.more-types-image .type-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

/* ========== Section 6: Considerations ========== -->
.considerations-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.considerations-section .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
}

.considerations-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.considerations-content {
    flex: 1;
}

.considerations-text {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.considerations-image {
    width: 50%;
}

.considerations-image .team-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

/* ========== Section 7: Versatile Styles ========== */
.versatile-styles-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-medium) 0;
}

.versatile-styles-section .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading-alt);
    text-align: center;
    margin-bottom: 40px;
}

.styles-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.styles-content {
    flex: 1;
}

.styles-content p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.styles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.style-item h3 {
    font-size: var(--font-size-h4);
    font-weight: 600;
    color: var(--color-heading-alt);
    margin-bottom: 10px;
}

.style-item p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.styles-image {
    width: 50%;
}

.styles-image .styles-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

/* ========== Section 8: FAQ ========== */
.faq-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-small) 0;
}

.faq-section .section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-section .faq-item {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.faq-section .faq-question {
    padding: 20px;
    background-color: var(--color-bg-white);
    color: var(--color-heading);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-left: 50px;
}

.faq-section .faq-question:before {
    content: '+';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-primary);
    font-weight: bold;
}

.faq-section .faq-item:hover .faq-question {
    background-color: #f9f9f9;
}

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

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    :root {
        --font-size-h1: 42px;
        --font-size-h2: 32px;
        --font-size-h3: 22px;
    }

    .product-grid-section .products-grid,
    .types-section .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-love-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .lighting-styles-section .styles-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .how-to-choose-section .choose-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .how-to-choose-section .choose-wrapper.reverse {
        flex-direction: column;
    }

    .types-of-porch-section .porch-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .outdoor-wall-lights-section .wall-lights-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .outdoor-wall-lights-section .wall-lights-content {
        flex: 1;
        max-width: 100%;
    }

    .outdoor-wall-lights-section .wall-lights-image {
        flex: 1;
        max-width: 100%;
    }

    .barn-ceiling-lights-section .barn-ceiling-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .barn-ceiling-lights-section .barn-ceiling-content {
        flex: 1;
        max-width: 100%;
    }

    .barn-ceiling-lights-section .barn-ceiling-image {
        flex: 1;
        max-width: 100%;
    }

    .flush-chandeliers-section .flush-chandeliers-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .flush-chandeliers-section .flush-chandeliers-content {
        flex: 1;
        max-width: 100%;
    }

    .flush-chandeliers-section .flush-chandeliers-image {
        flex: 1;
        max-width: 100%;
    }

    .pendant-landscape-section .pendant-landscape-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .pendant-landscape-section .pendant-landscape-content {
        flex: 1;
        max-width: 100%;
    }

    .pendant-landscape-section .pendant-landscape-image {
        flex: 1;
        max-width: 100%;
    }

    .flood-post-lights-section .flood-post-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .flood-post-lights-section .flood-post-content {
        flex: 1;
        max-width: 100%;
    }

    .flood-post-lights-section .flood-post-image {
        flex: 1;
        max-width: 100%;
    }

    .bollard-step-lights-section .bollard-step-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .bollard-step-lights-section .bollard-step-content {
        flex: 1;
        max-width: 100%;
    }

    .bollard-step-lights-section .bollard-step-image {
        flex: 1;
        max-width: 100%;
    }

    .bollard-step-lights-section .bollard-step-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .extra-considerations-section .extra-considerations-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .lighting-options-section .section-title-large,
    .types-of-porch-section .section-title-large {
        font-size: 32px;
    }

    .lighting-options-section .section-subtitle,
    .types-of-porch-section .section-subtitle {
        font-size: var(--font-size-body);
    }

    .wet-damp-section .wet-damp-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .durability-section .durability-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .versatile-styles-section .versatile-styles-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .site-address-lights-section .site-address-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .site-address-lights-section .site-address-content {
        flex: 1;
        max-width: 100%;
    }

    .site-address-lights-section .site-address-image {
        flex: 1;
        max-width: 100%;
    }

    .rope-emergency-lights-section .rope-emergency-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .rope-emergency-lights-section .rope-emergency-content {
        flex: 1;
        max-width: 100%;
    }

    .rope-emergency-lights-section .rope-emergency-image {
        flex: 1;
        max-width: 100%;
    }

    .choose-fitting-section .choose-fitting-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .more-types-wrapper,
    .considerations-wrapper,
    .styles-wrapper {
        flex-direction: column;
    }

    .more-types-image,
    .considerations-image,
    .styles-image {
        width: 100%;
        order: -1;
    }

}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    :root {
        --spacing-module-large: 60px;
        --spacing-module-medium: 50px;
        --spacing-module-small: 30px;
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
    }

    .outdoor-lighting-hero {
        height: 400px;
    }

    .outdoor-lighting-hero .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .outdoor-lighting-hero .hero-title {
        font-size: 32px;
    }

    .outdoor-lighting-hero .hero-content-right .btn-secondary {
        width: 100%;
    }

    .why-love-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .why-love-content .section-title {
        font-size: 24px;
    }

    .lighting-styles-section .styles-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .lighting-styles-section .styles-content .section-title {
        font-size: 24px;
    }

    .how-to-choose-section .choose-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .how-to-choose-section .choose-wrapper.reverse {
        flex-direction: column;
    }

    .how-to-choose-section .choose-content .section-title {
        font-size: 24px;
    }

    .types-of-porch-section .porch-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .types-of-porch-section .porch-content .section-title {
        font-size: 24px;
    }

    .outdoor-wall-lights-section .wall-lights-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .outdoor-wall-lights-section .wall-lights-content {
        flex: 1;
        max-width: 100%;
    }

    .outdoor-wall-lights-section .wall-lights-image {
        flex: 1;
        max-width: 100%;
    }

    .outdoor-wall-lights-section .wall-lights-content .section-title {
        font-size: 24px;
    }

    .barn-ceiling-lights-section .barn-ceiling-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .barn-ceiling-lights-section .barn-ceiling-content {
        flex: 1;
        max-width: 100%;
    }

    .barn-ceiling-lights-section .barn-ceiling-image {
        flex: 1;
        max-width: 100%;
    }

    .barn-ceiling-lights-section .barn-ceiling-content .section-title {
        font-size: 24px;
    }

    .flush-chandeliers-section .flush-chandeliers-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .flush-chandeliers-section .flush-chandeliers-content {
        flex: 1;
        max-width: 100%;
    }

    .flush-chandeliers-section .flush-chandeliers-image {
        flex: 1;
        max-width: 100%;
    }

    .flush-chandeliers-section .flush-chandeliers-content .section-title {
        font-size: 24px;
    }

    .pendant-landscape-section .pendant-landscape-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .pendant-landscape-section .pendant-landscape-content {
        flex: 1;
        max-width: 100%;
    }

    .pendant-landscape-section .pendant-landscape-image {
        flex: 1;
        max-width: 100%;
    }

    .pendant-landscape-section .pendant-landscape-content .section-title {
        font-size: 24px;
    }

    .flood-post-lights-section .flood-post-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .flood-post-lights-section .flood-post-content {
        flex: 1;
        max-width: 100%;
    }

    .flood-post-lights-section .flood-post-image {
        flex: 1;
        max-width: 100%;
    }

    .flood-post-lights-section .flood-post-content .section-title {
        font-size: 24px;
    }

    .bollard-step-lights-section .bollard-step-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .bollard-step-lights-section .bollard-step-content {
        flex: 1;
        max-width: 100%;
    }

    .bollard-step-lights-section .bollard-step-image {
        flex: 1;
        max-width: 100%;
    }

    .bollard-step-lights-section .bollard-step-content .section-title {
        font-size: 24px;
    }

    .extra-considerations-section .extra-considerations-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .extra-considerations-section .extra-considerations-content .section-title {
        font-size: 24px;
    }

    .lighting-options-section .section-title-large,
    .types-of-porch-section .section-title-large {
        font-size: 28px;
    }

    .lighting-options-section .section-subtitle,
    .types-of-porch-section .section-subtitle {
        font-size: 20px;
    }

    .wet-damp-section .wet-damp-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .wet-damp-section .wet-damp-content .section-title {
        font-size: 24px;
    }

    .durability-section .durability-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .durability-section .durability-content .section-title {
        font-size: 24px;
    }

    .versatile-styles-section .versatile-styles-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .versatile-styles-section .versatile-styles-content .section-title {
        font-size: 24px;
    }

    .site-address-lights-section .site-address-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .site-address-lights-section .site-address-content {
        flex: 1;
        max-width: 100%;
    }

    .site-address-lights-section .site-address-image {
        flex: 1;
        max-width: 100%;
    }

    .site-address-lights-section .site-address-content .section-title {
        font-size: 24px;
    }

    .rope-emergency-lights-section .rope-emergency-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .rope-emergency-lights-section .rope-emergency-content {
        flex: 1;
        max-width: 100%;
    }

    .rope-emergency-lights-section .rope-emergency-image {
        flex: 1;
        max-width: 100%;
    }

    .rope-emergency-lights-section .rope-emergency-content .section-title {
        font-size: 24px;
    }

    .choose-fitting-section .choose-fitting-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .choose-fitting-section .choose-fitting-content .section-title {
        font-size: 24px;
    }

    .product-grid-section .products-grid,
    .types-section .types-grid {
        grid-template-columns: 1fr;
    }

}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    :root {
        --font-size-h1: 28px;
        --font-size-h2: 24px;
        --font-size-h3: 18px;
        --font-size-body: 15px;
        --font-size-small: 13px;
    }

    .outdoor-lighting-hero {
        height: 350px;
    }

    .outdoor-lighting-hero .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .outdoor-lighting-hero .hero-title {
        font-size: 24px;
    }

    .why-love-content .section-title {
        font-size: 20px;
    }

    .lighting-styles-section .styles-content .section-title {
        font-size: 20px;
    }

    .how-to-choose-section .choose-content .section-title {
        font-size: 20px;
    }

    .types-of-porch-section .porch-content .section-title {
        font-size: 20px;
    }

    .outdoor-wall-lights-section .wall-lights-content .section-title {
        font-size: 20px;
    }

    .barn-ceiling-lights-section .barn-ceiling-content .section-title {
        font-size: 20px;
    }

    .flush-chandeliers-section .flush-chandeliers-content .section-title {
        font-size: 20px;
    }

    .pendant-landscape-section .pendant-landscape-content .section-title {
        font-size: 20px;
    }

    .flood-post-lights-section .flood-post-content .section-title {
        font-size: 20px;
    }

    .bollard-step-lights-section .bollard-step-content .section-title {
        font-size: 20px;
    }

    .extra-considerations-section .extra-considerations-content .section-title {
        font-size: 20px;
    }

    .lighting-options-section .section-title-large,
    .types-of-porch-section .section-title-large {
        font-size: 24px;
    }

    .lighting-options-section .section-subtitle,
    .types-of-porch-section .section-subtitle {
        font-size: 18px;
    }

    .wet-damp-section .wet-damp-content .section-title {
        font-size: 20px;
    }

    .durability-section .durability-content .section-title {
        font-size: 20px;
    }

    .versatile-styles-section .versatile-styles-content .section-title {
        font-size: 20px;
    }

    .site-address-lights-section .site-address-content .section-title {
        font-size: 20px;
    }

    .rope-emergency-lights-section .rope-emergency-content .section-title {
        font-size: 20px;
    }

    .choose-fitting-section .choose-fitting-content .section-title {
        font-size: 20px;
    }

    .outdoor-lighting-hero .hero-content-right .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .product-grid-section .product-card {
        padding: 20px 15px;
    }

    .faq-section .faq-question {
        padding-left: 40px;
        font-size: var(--font-size-small);
    }

    .btn-submit {
        width: 100%;
    }
}
