/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('/imageserver/UserMedia/revamped/rev-fortified-hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-logo {
    margin: 0 auto 30px;
}

.hero-logo img {
    max-width: 300px;
    width: 100%;
}

.hero-text-wrapper {
    background-color: #000000b0;
    padding: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    -webkit-text-stroke: 4px rgb(16, 103, 55);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
}

.hero-title-underline {
    background: #ae4b29;
    height: 7px;
    width: 60%;
    max-width: 660px;
    margin-inline: auto;
    border-top: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #2b2b2b 0%, #393939 100%);
    padding: 80px 5%;
    text-align: center;
    color: #fff;
}

.company-logo {
    margin-bottom: -10px;
}

.company-logo img {
    height: auto;
    width: 100%;
    max-width: 280px;
}

.cta-banner h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #6aca40;
    filter: drop-shadow(rgba(82, 210, 27, 0.95) 0px 0px 0.705334px) drop-shadow(rgba(111, 210, 68, 0.75) 0px 0px 3.52667px) drop-shadow(rgba(111, 210, 68, 0.44) 0px 0px 10.58px);
    -webkit-text-stroke: 2px #fff;
}

.cta-banner .fortified-logo {
    max-width: 250px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 100px auto 31px;
}

.cta-buttons .btn {
    padding: 7px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #fff;
}

.btn-primary {
    background-color: #14663e;
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    background-color: rgb(19, 95, 58);
    transform: translateY(-3px);
    color: #fff;
}

.cta-buttons .btn-secondary {
    background-color: #c85a28;
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background-color: #b04d20;
    transform: translateY(-3px);
}


/* Storm Threats Section */
.storm-threats {
    background-color: #2d2d2d;
    padding: 80px 5%;
    color: #fff;
}

.storm-threats h2 {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.threats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.threat-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #106737;
}

.threat-icon {
    width: 285px;
    height: 285px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

#hurricane_icon {
    background-image: url(/imageserver/UserMedia/revamped/hurricane-bg.jpg);
}

#wind_icon {
    background-image: url(/imageserver/UserMedia/revamped/high-wind-bg.jpg);
}

#hail_icon {
    background-image: url(/imageserver/UserMedia/revamped/hail-damage-bg.jpg);
}

.threat-card img {
    max-width: 200px;
    width: 95%;
}

.threat-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.threat-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.threat-card li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.threat-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.5rem;
}

/* Fortified Features Section */
.fortified-features {
    background-color: #2d2d2d;
    padding: 80px 5%;
    color: #fff;
}

.fortified-features h2 {
    font-size: 3.85rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    color: #333;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #ddd;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c85a28;
    text-transform: uppercase;
    border-bottom: 3px solid #c85a28;
    padding-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Benefits Section */
.benefits-section {
    background-color: #2d2d2d;
    padding: 80px 5%;
    color: #fff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    flex: 1 1 350px;
    max-width: 450px;
}

.benefit-icon {
    width: fit-content;
    margin: 0 auto 30px;
}

.benefit-icon img {
    width: 100%;
    max-width: 125px;
    height: auto;
}

.fortified-shield-icon {
    display: flex;
    position: relative;
    top: -85px;
    right: -70px;
}

.stronger-icon {
    position: relative;
}


.shield-white {
    position: absolute;
}

.shield-green {
    position: absolute;
    top: 6px;
    left: 4px;
}

.shield-logo {
    position: absolute;
    max-width: 70px;
    top: 25px;
    left: 6px;
}


.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

/* Video Section */
.video-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.77) 100%), url('/imageserver/UserMedia/revamped/rev-fortified-bg001.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 20px 0 0;
    text-align: center;
    color: #fff;
}

.video-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translate(-479.142px, 309.885px) rotate(-90deg);
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
}

.video-text {
    padding: 40px 15px;
    margin: 65px auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    background-color: rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #106737 0%, #106737 100%);
}

.video-text p {
    margin-bottom: 20px;
    max-width: 1300px;
    margin-inline: auto;
}

.video-text strong {
    color: #fff;
}

/* Resources Section */
.resources-section {
    background-color: #f8f8f8;
    padding: 80px 5%;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url(/imageserver/UserMedia/revamped/resource-card-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.resource-content {
    padding: 30px;
    background-color: #fff;
    height: 62%;
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.resource-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c85a28;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #b04d20;
    transform: translateX(5px);
    color: #fff;
    text-decoration: none;
}


.faq-heading {
    background: #ae4b29;
    padding: 40px 15px;
    text-align: center;
}

.faq-heading h2 {
    font-size: 2.85em;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    max-width: 30ch;
    margin-inline: auto;
}

.faq-accordion {
    margin: 40px auto;
    padding: 5px 15px;
    max-width: 1300px;
    width: 98.5%;
}

.faq-item {
    border-bottom: 2px solid #c03807;
    padding: 15px 0;
    text-align: left;
}

.faq-item:last-child {
    margin-bottom: 50px;
}

.question {
    font-size: 1rem;
    font-weight: bold;
    color: #055922;
    cursor: pointer;
    position: relative;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question .toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #8e8e8e;
}

.faq-item.active .question .toggle-icon {
    transform: rotate(45deg);
}

.answer {
    display: none;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.answer-title {
    color: #000;
}

.faq-section hr {
    border: none;
    margin-bottom: 10px;
    height: 3px;
}

.white-divider {
    background-color: #fff;
}

.orange-divider {
    background-color: #ea7312;
}

/* Commitment Section */
.commitment-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url(/imageserver/UserMedia/revamped/fortified-commitment-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
}

.commitment-box {
    background-color: rgba(255, 255, 255);
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.commitment-box h2 {
    font-size: 3.35rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.commitment-box h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.commitment-box hr {
    border-top: none;
    background: #111;
    height: 3px;
    width: 60%;
}

.commitment-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.commitment-box .btn {
    margin-top: 30px;
    background: #cbae3a;
    color: #fff;
    padding: 5px 40px;
    font-size: 1.35rem;
    font-weight: 700;
    border-radius: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #2d2d2d;
    padding: 80px 5%;
    color: #fff;
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-card {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 20px;
    text-align: center;
}

.faq-icon svg {
    margin-inline: auto;
    width: 90px;
    height: 90px;
    text-align: center;
}

.faq-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
text-align: center;
}

.faq-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.fine-print-text {
    margin-bottom: 40px;
}

/* Contact Section */
.contact-section {
    background-color: #2d2d2d;
    padding: 100px 5%;
    text-align: center;
    color: #fff;
}

.contact-section-wrapper {
    display: flex;
    gap: 2%;
}

.contact-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-section p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.contact-text {
    width: 65%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    width: 35%;
    gap: 15px;
    max-width: 1200px;
    margin: 60px auto;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: #d4af37;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-icon img {
    width: 65%;
    max-width: 80px;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.contact-item p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4af37;
}

.social-media {
    margin-top: 50px;
}

.social-media h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
    color: #2d2d2d;
}

.social-icon:hover {
    background-color: #d4af37;
    transform: scale(1.1);
}

.social-icon svg {
    width: 35px;
    height: 35px;
}

.contact-item-info {
    width: 75%;
}



/* Responsive Design */
@media (max-width: 1300px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

    }

}

@media (max-width: 1200px) {
    .contact-section-wrapper {
        display: flex;
        gap: 2%;
        flex-flow: row wrap;
        justify-content: center;
    }

    .contact-text {
	width: 98%;
}

.contact-info {
	display: flex;
	flex-direction: column;
	width: 98%;
	gap: 15px;
	max-width: 1200px;
	margin: 60px auto;
}

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .storm-threats h2,
    .fortified-features h2,
    .faq-section h2,
    .video-section h2 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .commitment-box {
        padding: 40px 30px;
    }

    .commitment-box h2 {
        font-size: 1.8rem;
    }

    .contact-info {
	display: flex;
	flex-direction: column;
	width: 98%;
	gap: 15px;
	max-width: 1200px;
	margin: 60px auto;
}

.contact-item {
	flex-direction: column;
}
}