/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

footer h4 {
    color: #2b8dd6;
    font-size: 20px;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #2b8dd6;
}

footer .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

footer .social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

footer .social-links a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    color: #2b8dd6;
    transform: translateY(-3px);
}

@media only screen and (max-width: 600px) {
    footer div.social-links {
        margin-bottom: 25px;
    }

    footer div.row div.col:last-child h4 {
        margin-top: 25px;
    }

}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2b8dd6 0%, #1e6ba8 100%);
    padding: 150px 0 60px;
    /*margin-top: 80px;*/
    color: #fff;
}

.page-header h1 {
    margin: 0;
    font-size: 48px;
    color: #fff;
}

.post-meta {
    margin-top: 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 16px;
    opacity: 0.9;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.post-meta a:hover {
    opacity: 0.8;
}

.archive-description {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
}

/* Single Post & Page Content */
.single-content,
.page-content {
    padding: 80px 0;
    background-color: #fff;
}

.post-thumbnail,
.page-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img,
.page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2b8dd6;
}

.entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e6ba8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    border-left: 4px solid #2b8dd6;
    padding: 20px 30px;
    margin: 30px 0;
    background-color: #f8f9fa;
    font-style: italic;
    color: #555;
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.post-tags i {
    color: #2b8dd6;
    font-size: 18px;
}

.post-tags a {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #2b8dd6;
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    background-color: #2b8dd6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(43, 141, 214, 0.3);
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

/* Blog Archive */
.blog-archive {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-archive nav {
    position: relative;
    line-height: 40px;
}

.blog-archive nav i {
    font-size: 14px;
    height: 0;
}

.posts-grid {
    display: grid;
    gap: 40px;
}

.blog-post-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-card .post-thumbnail {
    margin-bottom: 0;
    border-radius: 0;
}

.blog-post-card .post-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-post-card .post-content {
    padding: 30px;
}

.blog-post-card .post-meta {
    margin-top: 0;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.blog-post-card .post-meta span {
    color: #666;
}

.blog-post-card .post-meta a {
    color: #2b8dd6;
}

.blog-post-card .post-title {
    margin: 0 0 15px 0;
    font-size: 28px;
}

.blog-post-card .post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
    color: #2b8dd6;
}

.blog-post-card .post-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2b8dd6;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.blog-post-card .read-more:hover {
    gap: 12px;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: #2b8dd6;
    color: #fff;
}

.page-numbers.dots {
    background-color: transparent;
    cursor: default;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: #1a1a1a;
    font-size: 22px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #2b8dd6;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
}

.widget ul li a:hover {
    color: #2b8dd6;
}

.widget .post-date {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    display: block;
}

/* Search Widget */
.widget-search .search-form {
    position: relative;
}

.search-field-wrapper {
    position: relative;
    display: flex;
}

.search-field {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: #2b8dd6;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2b8dd6;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background-color: #1e6ba8;
}

/* Tags Widget */
.tag-cloud a {
    display: inline-block;
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    margin: 5px 5px 5px 0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: #2b8dd6;
    color: #fff;
}

/* CTA Widget */
.widget-cta {
    background: linear-gradient(135deg, #2b8dd6 0%, #1e6ba8 100%);
    color: #fff;
}

.widget-cta .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.widget-cta p {
    color: #fff;
    opacity: 0.9;
}

.widget-cta .btn-primary {
    background-color: #fff;
    color: #2b8dd6;
    width: 100%;
    text-align: center;
    padding: 25px 20px;
    line-height: 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
}

.widget-cta .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Comments */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.comments-title {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-size: 32px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-metadata {
    font-size: 14px;
    color: #999;
}

.comment-metadata a {
    color: #999;
    text-decoration: none;
}

.comment-content {
    margin-top: 15px;
    line-height: 1.6;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    color: #2b8dd6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.comment-reply-link:hover {
    text-decoration: underline;
}

/* No Posts Found */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 12px;
}

.no-posts h2 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-posts p {
    color: #666;
    font-size: 18px;
}

/* 404 Error Page */
.error-404 {
    text-align: center;
    min-height: 60vh;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-content i.fa-exclamation-triangle {
    font-size: 80px;
    color: #2b8dd6;
    margin-bottom: 30px;
}

.error-content h2 {
    margin-bottom: 20px;
}

.error-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-suggestion {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.search-suggestion h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.search-suggestion .search-form {
    max-width: 400px;
    margin: 0 auto;
}* {
     font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     box-sizing: border-box;
 }

body {
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    overflow: unset !important;
}

p {
    font-size: 18px;
    margin-bottom: 1.2em;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-top: 0;
}

h1 {
    font-size: 72px;
    line-height: 1.2;
}

h2, h2 strong {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    color: #134164;
}

ul {
    font-size: 18px;
    padding-left: 0 !important;
}

ul li:before {
    content: '✓';
    margin-right: 15px;
    color: #089108;
}

ul.sidenav li:before,
div.select-wrapper li:before{
    content: unset;
    margin-right: unset;
}

ul li > p {
    display: inline;
}

.container {
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
}

/* Navigation - WordPress Compatible */
nav {
    position: absolute;
    background-color: transparent;
    z-index: 1000;
    box-shadow: none;
    padding: 20px 0;
    width: 100%;
    transition: all 0.3s ease;
    height: unset;
}

nav.scrolled {
    position: fixed;
    background-color: rgba(43, 141, 214, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

nav .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .nav-wrapper > a {
    position: absolute;
    width: 100%;
    height: 60px;
    max-width: 300px;
    z-index: 1;
}

/* Logo */
nav img,
nav .custom-logo-link img {
    max-width: 280px;
    height: auto;
    padding: 10px 0;
    transition: all 0.3s ease;
}

body.archive nav img,
body.single nav img,
body.blog nav img,
body.wp-singular nav img,
nav.scrolled img,
nav.scrolled .custom-logo-link img,
body.home nav.scrolled img {
    filter: brightness(0) invert(1) !important;
}

body.home nav img {
    filter: unset !important;
}

/* WordPress Menu Styles */
nav ul.nav-menu,
nav .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

nav ul.nav-menu li,
nav .menu li {
    margin: 0;
    position: relative;
}

nav ul.nav-menu li:before,
nav .menu li:before {
    display: none;
}

nav ul.nav-menu li a,
nav .menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

nav ul.nav-menu li a:hover,
nav .menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Button style for CTA menu item */
nav ul.nav-menu li a.btn-nav,
nav .menu li a.btn-nav,
nav ul.nav-menu li.menu-item a[href*="#form"],
nav .menu li.menu-item a[href*="#form"] {
    background-color: #fff;
    color: #2b8dd6;
    font-weight: 600;
    padding: 10px 20px;
}

nav ul.nav-menu li a.btn-nav:hover,
nav .menu li a.btn-nav:hover,
nav ul.nav-menu li.menu-item a[href*="#form"]:hover,
nav .menu li.menu-item a[href*="#form"]:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* WordPress submenu support (if needed) */
nav ul.nav-menu li ul.sub-menu,
nav .menu li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(43, 141, 214, 0.98);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
    flex-direction: column;
    gap: 0;
}

nav ul.nav-menu li:hover ul.sub-menu,
nav .menu li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul.nav-menu li ul.sub-menu li,
nav .menu li ul.sub-menu li {
    width: 100%;
}

nav ul.nav-menu li ul.sub-menu li a,
nav .menu li ul.sub-menu li a {
    padding: 10px 20px;
    border-radius: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle:focus {
    background-color: unset;
}

nav .sidenav-trigger {
    height: unset;
}

/* Mobile Sidenav */
.sidenav {
    background-color: #2b8dd6;
}

.sidenav li:first-child {
    margin-top: 150px;
}

.sidenav li {
    padding-left: 0.25em;
}

.sidenav li > a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.sidenav li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidenav li > a.btn-nav,
.sidenav li.menu-item a[href*="#form"] {
    background-color: #fff;
    color: #2b8dd6;
    font-weight: 600;
    margin: 10px 16px;
    border-radius: 4px;
    text-align: center;
}

/* WordPress menu classes support */
nav .menu li.current-menu-item > a,
nav .menu li.current_page_item > a {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Header */
header {
    background-image: url(../images/dakdekkers-aan-het-werk.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 0;
    text-align: left;
    width: 100%;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

header:before {
    content: '';
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

header:after {
    content: '';
    background-image: url("../images/slope-subtle-divider.svg");
    background-repeat: no-repeat;
    background-position: top;
    transform: rotate(180deg);
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
}

header .container {
    position: relative;
    z-index: 1;
}

header h1 {
    margin: 0 0 30px 0;
    color: #fff;
    animation: fadeInUp 1s ease;
}

header h1 span {
    background-color: #2b8dd6;
    line-height: 1.4;
    border-radius: 5px;
    padding: 0 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(43, 141, 214, 0.4);
    position: relative;
    overflow: hidden;
    min-height: 100px;
    vertical-align: middle;
}

.rotating-text {
    display: inline-block;
    position: relative;
    height: 65px;
    vertical-align: middle;
    min-width: 570px;
    margin-top: 25px;
}

.rotating-text-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    animation: rotateText 12s infinite;
    white-space: nowrap;
    width: 100%;
    text-align: left;
}

.rotating-text-item:nth-child(1) {
    animation-delay: 0s;
}

.rotating-text-item:nth-child(2) {
    animation-delay: 3s;
}

.rotating-text-item:nth-child(3) {
    animation-delay: 6s;
}

.rotating-text-item:nth-child(4) {
    animation-delay: 9s;
}

@keyframes rotateText {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(100%);
    }
    5% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    25% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%);
    }
}

header .subtitle {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

header .header-benefits {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

header .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
}

header .benefit-item i {
    color: #4CAF50;
    font-size: 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Section */
section#form {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 50%);
}

section#form .intro-text {
    margin-bottom: 60px;
}

section#form .intro-text h2 {
    color: #1a1a1a;
}

section#form div.card {
    background: linear-gradient(135deg, #2b8dd6 0%, #1e6ba8 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: -220px;
}

section#form div.card div.background-wrapper:after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

section#form div.card div.card-content {
    padding: 40px 35px;
    position: relative;
    z-index: 1;
}

section#form div.card div.card-content h3,
section#form div.card div.card-content > p {
    color: #fff;
    text-align: center;
    margin: 0 0 25px 0;
}

@media only screen and (max-width: 992px) {

    section#form div.container > div.row {
        display: flex;
        flex-direction: column;
    }

        section#form div.container > div.row > div.col.order-m1 {
            order: 1;
        }

            section#form div.container div.col.order-m1 div.card {
                margin-top: -150px;
            }

        section#form div.container > div.row > div.col.order-m2 {
            order: 2;
            padding-top: 50px;
        }

}

@media only screen and (max-width: 600px) {

    section#form {
        padding: 80px 0 0 0;
    }

}

section#form .input-field {
    margin-bottom: 25px;
}

section#form .input-field > label {
    color: #fff !important;
    font-size: 16px;
}

section#form input:not([type]),
section#form input[type=text]:not(.browser-default),
section#form input[type=password]:not(.browser-default),
section#form input[type=email]:not(.browser-default),
section#form input[type=tel]:not(.browser-default),
section#form textarea.materialize-textarea,
section#form .select-wrapper input.select-dropdown {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    font-size: 16px;
}

section#form input:not([type]):focus:not([readonly]),
section#form input[type=text]:not(.browser-default):focus:not([readonly]),
section#form input[type=password]:not(.browser-default):focus:not([readonly]),
section#form input[type=email]:not(.browser-default):focus:not([readonly]),
section#form input[type=tel]:not(.browser-default):focus:not([readonly]),
section#form textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 2px solid #fff !important;
    box-shadow: 0 1px 0 0 #fff !important;
}

section#form textarea.materialize-textarea::placeholder {
    color: #fff;
}

section#form .select-wrapper .caret {
    fill: #fff !important;
}

section#form textarea.materialize-textarea {
    min-height: 100px;
    padding-top: 15px;
}

.btn.secondary {
    background-color: #fff;
    color: #2b8dd6;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    padding: 0 40px;
    height: 54px;
    line-height: 54px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.btn.secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* steps Section */
section#steps {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

section#steps h2 {
    margin-bottom: 60px;
    color: #1a1a1a;
}

.usp {
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.usp:hover {
    transform: translateY(-10px);
}

.usp img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(43, 141, 214, 0.3));
}

.usp h3 {
    color: #2b8dd6;
    margin-bottom: 15px;
    font-size: 26px;
}

.usp p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

@media only screen and (max-width: 782px) {

    section#steps div.row div.col {
        width: 100%;
    }

}

/* About Section */
section#about {
    padding: 80px 0;
    background-color: #fff;
}

section#about .container {
    max-width: 1200px;
}

section#about h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

section#about h3 {
    color: #2b8dd6;
    margin-top: 40px;
    margin-bottom: 25px;
}

section#about p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

section#about ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

section#about ul li {
    position: relative;
    background: linear-gradient(135deg, #2b8dd6 0%, #1e6ba8 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(43, 141, 214, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    font-weight: 500;
}

section#about ul li:before {
    margin-right: 0px;
    font-weight: bold;
    font-size: 20px;
    content: '';
}

section#about ul li:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(43, 141, 214, 0.4);
}

section#about ul li:after {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: left 0.5s ease;
}

section#about ul li:hover:after {
    left: 0;
}

/* CTA Section */
section#cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b8dd6 0%, #1e6ba8 100%);
    text-align: center;
    color: #fff;
}

section#cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

section#cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

section#cta .btn-large {
    background-color: #fff;
    color: #2b8dd6;
    font-weight: 600;
    font-size: 18px;
    padding: 0 50px;
    height: 60px;
    line-height: 60px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

section#cta .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

footer h4 {
    color: #2b8dd6;
    font-size: 20px;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

footer ul li:before {
    display: none;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #2b8dd6;
}

footer .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

footer .social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

footer .social-links a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    color: #2b8dd6;
    transform: translateY(-3px);
}

/* Responsive */
@media only screen and (max-width: 1380px) {
    nav ul.nav-menu,
    nav .menu {
        display: unset;
    }
}

@media only screen and (max-width: 1200px) {
    nav div.nav-wrapper img,
    nav div.nav-wrapper .custom-logo-link img {
        max-width: 200px;
    }

    nav ul.nav-menu li:first-child,
    nav .menu li:first-child {
        display: none;
    }

    nav ul.nav-menu li a,
    nav .menu li a {
        padding: 8px 10px;
    }
}

@media only screen and (max-width: 992px) {
    nav ul.nav-menu,
    nav .menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #2b8dd6;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
    }

    nav ul.nav-menu.active,
    nav .menu.active {
        display: flex;
        right: 0;
    }

    nav ul.nav-menu li,
    nav .menu li {
        width: 100%;
    }

    nav ul.nav-menu li a,
    nav .menu li a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hide submenus on mobile or flatten them */
    nav ul.nav-menu li ul.sub-menu,
    nav .menu li ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
    }

    header h1 {
        font-size: 48px;
    }

    header h1 span {
        padding: 1px 25px;
        min-height: 70px;
    }

    .rotating-text {
        height: 65px;
        min-width: 400px;
    }

    header .header-benefits {
        flex-direction: column;
        gap: 15px;
    }

    section#form div.card {
        margin-top: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    header {
        min-height: 70vh;
        padding: 100px 0;
    }

    header h1 span {
        min-height: 60px;
    }

    .rotating-text {
        height: 69px;
        min-width: 200px;
        display: block;
    }

    section#about ul {
        grid-template-columns: 1fr;
    }

    section#about ul li:before {
        display: none;
    }

    section#form div.card div.card-content {
        padding: 40px 20px;
    }

    .btn {
        padding: 0 20px !important;
        font-size: 16px !important;
    }

        .btn i {
            font-size: 1.1rem !important;
        }

    section#cta a.btn-large {
        font-size: 12px !important;
    }

}
