/*
Theme Name: Hamta
Theme URI: https://hamta.alborzpayande.ir/
Author: Alborz Payande
Author URI: https://alborzpayande.ir/
Description: Hamta is a theme for the Hamta website.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hamta
*/


/* add font iransans assets/fonts */
@font-face {
    font-family: 'iransans';
    src: url('assets/fonts/IRANSansWeb.woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'iransans';
    src: url('assets/fonts/IRANSansWeb_Bold.woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{
    max-width: 100%;
    height: auto;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}

h1,h2,h3,h4,h5,h6,strong,b{
    font-weight: bold
}

body {
    font-family: 'iransans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 2;
    direction: rtl;
}

#wpadminbar{
    display: none !important;
}

html{
    margin-top: 0 !important;
}

:root{
    --primary-color: #11889E;
    --light-primary-color: #11889E1A;

}

.button{
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6b7d 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(17, 136, 158, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.button:hover::before {
    left: 100%;
}

.button.secondary{
    background: var(--light-primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(17, 136, 158, 0.1) !important;
}

.button:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(17, 136, 158, 0.4);
}

.button.secondary:hover{
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6b7d 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(17, 136, 158, 0.4);
}

.button svg {
    transition: transform 0.3s ease;
}

.button svg{
    transform: rotateY(180deg);
}

.button:hover svg {
    transform: rotateY(180deg) translateX(3px);
}

#primary-menu{
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 500px;
    overflow: hidden;
}
.banner-content{
    position: absolute;
    text-align: center;
    z-index: 10;
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.banner *{
    color: #fff;
    text-shadow: 0 0 9px #000000a1;
}
.fs-7{
    font-size: 0.875rem;
}
.banner.has-overlay::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 5;
}

.site-footer{
    background-color: var(--primary-color);
    color: #fff;
}

.site-footer{
    padding: 4rem 0;
}

/* Items Slider Styles */
.items-section {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.items-section h2 {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.items-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.items-slider {
    position: relative;
}

.items-swiper {
    padding: 0 0 4rem 0;
}

.items-swiper .swiper-slide {
    height: auto;
}

.items-swiper .swiper-slide > div {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.items-swiper .swiper-slide > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #0d6b7d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.items-swiper .swiper-slide:hover > div::before {
    transform: scaleX(1);
}

.items-swiper .swiper-slide:hover > div {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 20px rgba(17, 136, 158, 0.12);
    border-color: var(--light-primary-color);
}

.items-swiper .swiper-slide img {
    transition: transform 0.4s ease;
}

.items-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.items-swiper .swiper-slide h4 {
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.items-swiper .swiper-slide:hover h4 {
    color: var(--primary-color);
}

/* Navigation Buttons */
.items-swiper .swiper-button-next,
.items-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(17, 136, 158, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--light-primary-color);
}

.items-swiper .swiper-button-next:hover,
.items-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(17, 136, 158, 0.35);
}

.items-swiper .swiper-button-next:after,
.items-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Pagination */
.items-swiper .swiper-pagination {
    bottom: 0;
}

.items-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.items-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.items-slider img{
    width: 100%;
    height: auto;
}
.agency-item i{
    position: relative;
}
.agency-item:not(:last-child) i:before{
    content: '';
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    width: 0;
    height: calc(100% - 12px);
    margin: auto;
    border-left: 1.6px dashed #0004;
}
.agency-holder{
    background-color: var(--light-primary-color);
}
.testimonial img{
    width: 100%;
    margin-bottom: -5%;
}
.testimonial-holder{
    position: relative;
}
.testimonial-holder-inner{
    position: relative;
    max-width: 1024px;
    background: #fff;
    border-radius: 12px;
    padding: 2rem 4rem;
    margin: auto;
}
.testimonial-swiper-buttons,.blog-swiper-buttons{
    width: calc(100% + 4rem);
    margin: 0 -7rem;
    position: absolute;
}
.testimonial-swiper-buttons > div,.blog-swiper-buttons > div{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    padding: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-swiper-buttons > div:before,.testimonial-swiper-buttons > div:after,
.blog-swiper-buttons > div:before,.blog-swiper-buttons > div:after{
    font-size: 18px;
}

.blog-item{
    box-shadow: 0 0 10px 0 var(--light-primary-color);
}
.blog-swiper-buttons{
    width: 100%;
    margin: 0 0;
}

.faq-item{
    box-shadow: 0 0 10px 0 #11889e66;
    border-radius: 12px;
    padding: 1rem;
}

.faq-item span{
    cursor: pointer;
}
.faq-item span svg{
    background: var(--primary-color);
    color: #fff;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    padding: 1px;
}
.faq-item{
    transition: 0.3s;
}
.show.faq-item{
    background: var(--primary-color);
    color: #fff;
}
.show.faq-item svg{
    background: #fff;
    color: var(--primary-color);
}
.show.faq-item p{
    color: #fff;
}
.faq-item-answer p{
    font-size: 13px;
    margin-top: 1rem;
}
/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-list img {
        width: 75px;
        height: 75px;
    }
    
    .agency-holder {
        padding: 2rem !important;
    }
    
    .testimonial-holder-inner {
        padding: 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .items-swiper .swiper-button-next,
    .items-swiper .swiper-button-prev {
        display: none;
    }
    
    .items-swiper {
        padding: 0 0 3rem 0;
    }
    
    .services-list .border {
        padding: 2rem !important;
    }
    
    .services-list img {
        width: 70px;
        height: 70px;
    }
    
    .agency-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-holder-inner {
        padding: 2rem;
    }
    
    .testimonial-holder-inner::before {
        font-size: 80px;
        top: 10px;
        right: 20px;
    }
    
    .testimonial-swiper-buttons > div {
        width: 35px;
        height: 35px;
        padding: 0.75rem;
    }
    
    /* Content Section Tablet */
    .content-decoration {
        top: -15px;
        left: -15px;
    }
    
    .content-title {
        font-size: 1.75rem !important;
    }
    
    .content-description {
        font-size: 1rem;
    }
    
    /* Futures Section Tablet */
    .future-item {
        padding: 2rem !important;
    }
    
    .future-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .future-icon {
        max-width: 40px;
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero .button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .items-slider {
        padding: 1rem 0;
    }
    
    .items-swiper .swiper-slide > div {
        padding: 1.5rem 1rem;
    }
    
    .services-list .border {
        padding: 1.5rem !important;
    }
    
    section h2::after {
        width: 50px;
        height: 3px;
    }
    
    .agency-holder {
        padding: 1.5rem !important;
    }
    
    .agency-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .agency-item svg {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-holder-inner {
        padding: 1.5rem;
    }
    
    .testimonial-item-content-name {
        font-size: 1.1rem;
    }
    
    .testimonial-item-content p {
        font-size: 0.95rem;
    }
    
    /* Content Section Mobile */
    .content-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    
    .content-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .content-title {
        font-size: 1.5rem !important;
    }
    
    .content-title::after {
        width: 70px;
        height: 3px;
    }
    
    .content-description {
        font-size: 0.95rem;
    }
    
    .content-decoration {
        display: none;
    }
    
    /* Futures Section Mobile */
    .future-item {
        padding: 1.5rem !important;
    }
    
    .future-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .future-icon {
        max-width: 35px;
        max-height: 35px;
    }
    
    .future-title {
        font-size: 1rem !important;
    }
    
    .future-description {
        font-size: 0.9rem;
    }
    
    .future-arrow {
        width: 40px;
        height: 40px;
    }
    
    .future-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Modern Mobile Menu Styles */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 24px;
    margin-right: 15px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: #0d6b7d;
}

.modern-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: right 0.4s ease;
}

.modern-mobile-menu.show {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-mobile-menu.show .mobile-menu-overlay {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.modern-mobile-menu.show .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6b7d 100%);
}

.mobile-menu-brand {
    max-width: 120px;
}

.mobile-menu-brand img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.mobile-site-title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-navigation {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 0;
}

.modern-mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.modern-mobile-nav-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.modern-mobile-nav-menu a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--light-primary-color);
    transition: width 0.3s ease;
}

.modern-mobile-nav-menu .menu-item-has-children > a:after {
    transform: rotate(318deg) !important;
    content: '';
    transition: all 0.3s ease;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    width: 8px;
    height: 8px;
    margin-right: 1rem;
    margin-top: -7px;
}

.modern-mobile-nav-menu a:hover,
.modern-mobile-nav-menu a:active {
    color: var(--primary-color);
    background: var(--light-primary-color);
}

.modern-mobile-nav-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.modern-mobile-nav-menu .current-menu-item a {
    color: var(--primary-color);
    background: var(--light-primary-color);
    font-weight: bold;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.mobile-menu-actions {
    display: flex;
    gap: 0.75rem;
}
.mobile-menu-actions a{
    width: 50%;
}
.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: .5rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    background: #0d6b7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 136, 158, 0.3);
}

.mobile-action-btn svg {
    width: 20px;
    height: 20px;
}

/* Animation for menu items */
.modern-mobile-menu.show .modern-mobile-nav-menu li {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
}

.modern-mobile-menu.show .modern-mobile-nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.modern-mobile-menu.show .modern-mobile-nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.modern-mobile-menu.show .modern-mobile-nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.modern-mobile-menu.show .modern-mobile-nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.modern-mobile-menu.show .modern-mobile-nav-menu li:nth-child(5) { animation-delay: 0.3s; }
.modern-mobile-menu.show .modern-mobile-nav-menu li:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scrollbar styling for mobile menu */
.mobile-navigation::-webkit-scrollbar {
    width: 6px;
}

.mobile-navigation::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-navigation::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.mobile-navigation::-webkit-scrollbar-thumb:hover {
    background: #0d6b7d;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mobile-menu-content {
        width: 90%;
    }
    
    .modern-mobile-nav-menu a {
        padding: 0.875rem 1.25rem;
        font-size: 0.938rem;
    }
    
    .mobile-menu-header {
        padding: 1.25rem;
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Mobile Header Layout */
.mobile-branding {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-branding img {
    max-height: 40px;
    width: auto;
}

.mobile-menu-toggle-wrapper {
    flex-shrink: 0;
    margin-right: 1rem;
}

.mobile-actions {
    flex-shrink: 0;
    margin-left: 1rem;
}

.mobile-actions .button {
    padding: 8px 12px;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.mobile-actions .button svg {
    width: 18px;
    height: 18px;
}

.site-branding {
    max-width: 150px;
}

.site-branding img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.site-branding:hover img {
    transform: scale(1.05);
}

#primary-menu {
    align-items: center;
}

#primary-menu a {
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

#primary-menu a:hover {
    color: var(--primary-color);
}

#primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

#primary-menu a:hover::after {
    width: 100%;
}

#primary-menu .current-menu-item a {
    color: var(--primary-color);
}

#primary-menu .current-menu-item a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .button {
    white-space: nowrap;
}
#primary-menu li{
    position: relative;
}
#primary-menu .sub-menu{
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 1rem;
    z-index: 1000;
    width: 200px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

#primary-menu li:hover > .sub-menu{
    visibility: visible;
    opacity: 1;
}

#primary-menu .sub-menu a:after{
    display: none;
}

/* ============================================
   SECTION SPACING
   ============================================ */
section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

section > .container > .row > .col p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Scroll Reveal Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Improved box shadows with subtle colors */
.shadow-primary {
    box-shadow: 0 10px 40px rgba(17, 136, 158, 0.15);
}

.shadow-primary-hover:hover {
    box-shadow: 0 15px 50px rgba(17, 136, 158, 0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8f9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(17, 136, 158, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero p{
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero .buttons {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero .button {
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(17, 136, 158, 0.2);
}

.hero img {
    animation: fadeInRight 1s ease 0.3s backwards;
    /* filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1)); */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    position: relative;
}

/* Services Mobile Layout - Base Styles */
.service-content-mobile {
    display: none;
}

.service-title-mobile,
.service-description-mobile {
    display: none;
}

.service-icon-desktop,
.service-title-desktop,
.service-description-desktop {
    display: block;
}

/* Mobile Service Card Hover Effects */
@media (max-width: 767.98px) {
    .service-card:hover .service-icon-mobile img {
        transform: scale(1.1);
        background: var(--primary-color);
    }
    
    .service-card:hover .service-title-mobile {
        color: var(--primary-color);
    }
    
    .service-card:hover .service-description-mobile {
        color: #555;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, #f8f9fa 100%);
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services h2 {
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.services-list .border {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0 !important;
}

.services-list .border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #0d6b7d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.services-list .border:hover::before {
    transform: scaleX(1);
}

.services-list .border:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(17, 136, 158, 0.2);
    border-color: var(--light-primary-color) !important;
}

.services-list img {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: block;
    transition: transform 0.4s ease;
    padding: 15px;
    /* background: var(--light-primary-color); */
    border-radius: 20px;
}

.services-list .col-lg-4:nth-child(1) img{
    background: #e0f2fe
}
.services-list .col-lg-4:nth-child(2) img{
    background: #ecfdf5
}
.services-list .col-lg-4:nth-child(3) img{
    background: #fffbeb 
}

.services-list .border:hover img {
    transform: scale(1.1) rotateY(360deg);
}

.services-list h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

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

/* ============================================
   AGENCY SECTION
   ============================================ */
.agency {
    position: relative;
}

.agency-holder {
    background: linear-gradient(135deg, rgba(17, 136, 158, 0.08) 0%, rgba(17, 136, 158, 0.15) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(17, 136, 158, 0.1);
}

.agency-holder::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.agency h2 {
    position: relative;
    font-weight: 700;
    color: #1a1a1a;
}

.agency h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.agency-content {
    position: relative;
}

.agency-item {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.agency-item:nth-child(1) { animation-delay: 0.1s; }
.agency-item:nth-child(2) { animation-delay: 0.2s; }
.agency-item:nth-child(3) { animation-delay: 0.3s; }
.agency-item:nth-child(4) { animation-delay: 0.4s; }


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.agency-item svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(17, 136, 158, 0.2));
    transition: transform 0.3s ease;
}

.agency-item:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.agency-item p {
    margin: 0;
    line-height: 1.9;
    color: #444;
    font-size: 1rem;
}

.agency .button {
    box-shadow: 0 8px 25px rgba(17, 136, 158, 0.25);
    font-weight: 600;
    padding: 14px 32px;
}

.agency img {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    position: relative;
}

.testimonial h2 {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.testimonial h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonial-holder {
    position: relative;
}

.testimonial-holder-inner {
    position: relative;
    max-width: 1024px;
    background: #fff;
    border-radius: 20px;
    padding: 3rem 5rem;
    margin: auto;
    box-shadow: 0 15px 50px rgba(17, 136, 158, 0.15);
    border: 1px solid rgba(17, 136, 158, 0.1);
}

.testimonial-holder-inner::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 120px;
    color: var(--light-primary-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
    z-index: 0;
}

.testimonial-swiper {
    position: relative;
    z-index: 1;
}

.testimonial-item-content-name {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.testimonial-item-content-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonial-item-content p {
    color: #555;
    line-height: 2;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
}

.testimonial-swiper-buttons > div {
    box-shadow: 0 5px 20px rgba(17, 136, 158, 0.25);
    transition: all 0.3s ease;
}

.testimonial-swiper-buttons > div:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(17, 136, 158, 0.4);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.blog h2 {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.blog h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.blog-item {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #0d6b7d);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.blog-item:hover::before {
    opacity: 0.03;
}

.blog-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 50px rgba(17, 136, 158, 0.25) !important; */
    border-color: var(--light-primary-color);
}

.blog-item-image {
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16/9;
    position: relative;
}

.blog-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-item:hover .blog-item-image::after {
    opacity: 1;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.15);
}

.blog-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.blog-item:hover h3 {
    color: var(--primary-color);
}

.blog-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.blog-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.blog-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item span {
    font-weight: bold;
    font-size: 1.05rem;
}

.faq-item svg {
    transition: transform 0.3s ease;
}

.faq-item.show span svg {
    transform: rotate(45deg);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
html {
    scroll-behavior: smooth;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Improve button interaction on touch devices */
@media (hover: none) {
    .button:hover {
        transform: none;
    }
    
    .button:active {
        transform: scale(0.95);
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.about-hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.3;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.about-hero-image {
    position: relative;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
}

/* Mission & Vision Section */
.mission-vision {
    background-color: #f8f9fa;
}

.mission-card,
.vision-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(17, 136, 158, 0.15) !important;
    border-color: var(--primary-color);
}

.mission-icon svg,
.vision-icon svg {
    width: 50px;
    height: 50px;
}

.mission-text,
.vision-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* Values Section */
.value-card {
    transition: all 0.3s ease;
    background: #fff;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(17, 136, 158, 0.15);
    border-color: var(--primary-color) !important;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-primary-color);
    border-radius: 50%;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

.value-title {
    color: #333;
    font-weight: bold;
}

.value-description {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    background-color: #f8f9fa;
}

.brand-item {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* Services Overview Section */
.service-overview-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(17, 136, 158, 0.15);
}

.service-overview-card:hover::before {
    width: 100%;
}

.service-number-badge .badge {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color) !important;
}

.service-overview-title {
    color: #333;
    font-weight: bold;
}

.service-overview-description {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* History Timeline Section */
.history {
    background-color: #f8f9fa;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--light-primary-color));
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin-bottom: -5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
}

.timeline-dot {
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border: 5px solid #fff;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 0 3px var(--light-primary-color);
}

.timeline-content {
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item-right .timeline-content::before {
    left: -20px;
    border-right-color: #fff;
}

.timeline-item-left .timeline-content::before {
    right: -20px;
    border-left-color: #fff;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(17, 136, 158, 0.2) !important;
}

.timeline-year {
    font-weight: bold;
    font-size: 0.9rem;
    background-color: var(--primary-color) !important;
}

.timeline-title {
    color: #333;
    font-weight: bold;
}

.timeline-description {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Responsive Design for About Page */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-image::after {
        display: none;
    }
    
    /* Timeline mobile view */
    .timeline-wrapper::before {
        right: 20px;
        transform: none;
    }
    
    .timeline-item-left .timeline-content,
    .timeline-item-right .timeline-content {
        margin-right: 60px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-marker {
        position: absolute;
        right: 0;
        top: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .mission-title,
    .vision-title {
        font-size: 1.5rem;
    }
    
    .value-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .timeline-item-left .timeline-content,
    .timeline-item-right .timeline-content {
        margin-right: 50px;
    }
    
    .timeline-marker {
        right: 12px;
    }
    
    .timeline-dot {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.contact-hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
}

/* Warranty CTA Section */
.warranty-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6b7d 100%);
    color: #fff;
    box-shadow: 0 15px 50px rgba(17, 136, 158, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.warranty-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Decorative Circles */
.warranty-cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.decoration-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

.decoration-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Badge with Animation */
.warranty-cta-badge {
    display: inline-block;
}

.badge-wrapper {
    position: relative;
    display: inline-block;
}

.badge-wrapper svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.warranty-cta-title {
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.3;
}

.warranty-cta-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Services Grid */
.warranty-services-grid {
    margin-bottom: 0;
}

.warranty-service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.warranty-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.warranty-service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warranty-service-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.warranty-service-title {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

/* Benefits Badges */
.warranty-benefits {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.benefit-badge svg {
    stroke: #fff;
    flex-shrink: 0;
}

.btn-warranty {
    background: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 1rem 2.5rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-warranty:hover::before {
    left: 100%;
}

.btn-warranty:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background: #f8f9fa;
    color: var(--primary-color);
}

.btn-warranty svg {
    transition: transform 0.3s ease;
}

.btn-warranty:hover svg {
    transform: translateX(-5px);
}

.warranty-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item svg {
    stroke: #fff;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
}

/* Contact Info Header */
.contact-info-header h3 {
    color: #333;
    font-weight: bold;
}

/* Contact Info Cards - New Compact Design */
.contact-info-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    min-height: 90px;
}

/* .contact-info-card-inner {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card-inner:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(17, 136, 158, 0.1);
    transform: translateX(-3px);
} */

.contact-info-icon-wrapper {
    flex-shrink: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-card-inner:hover .contact-info-icon {
    background: var(--primary-color);
    transform: scale(1.05);
}

.contact-info-icon svg {
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.contact-info-card-inner:hover .contact-info-icon svg {
    stroke: #fff;
}

.contact-info-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-info-value {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: var(--primary-color);
}

.contact-info-note {
    font-size: 0.8rem;
    color: #999;
}

/* Quick Actions */
.contact-quick-actions {
    border: 1px dashed var(--primary-color);
}

.contact-quick-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.contact-quick-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 136, 158, 0.3);
}

.contact-quick-actions .btn-outline-primary svg {
    margin-left: 0.5rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-form-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.contact-form-header h3 {
    color: #333;
    font-weight: bold;
}

/* Default Form Styles */
.contact-form-default .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.contact-form-default .form-label svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.contact-form-default .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: #fff;
}

.contact-form-default .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

.contact-form-default .form-control:hover {
    border-color: #dee2e6;
}

.contact-form-default .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(17, 136, 158, 0.1);
    outline: none;
    background: #fff;
}

.contact-form-default textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 1rem;
}

.contact-form-wrapper .wpcf7-form label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 136, 158, 0.1);
    outline: none;
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-wrapper .wpcf7-submit:hover {
    background-color: #0d6b7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 136, 158, 0.3);
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 0 10px;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ok {
    border: none;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-form-wrapper .wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
}

/* FAQ Section */
.contact-faq {
    background: #fff;
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-question:hover {
    background: var(--light-primary-color) !important;
    border-color: var(--primary-color);
}

.faq-question-text {
    font-weight: 500;
    color: #333;
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.show .faq-icon {
    transform: rotate(45deg);
}

.faq-item.show .faq-question {
    background: var(--primary-color) !important;
    color: #fff;
    border-color: var(--primary-color);
}

.faq-item.show .faq-question-text {
    color: #fff;
}

.faq-item.show .faq-icon {
    stroke: #fff;
}

.faq-item-answer {
    margin-top: -8px;
    padding-top: 8px;
}

.faq-item-answer p {
    color: #555;
    line-height: 1.8;
}
.service-features .icon-wrapper svg{
    width: 64px;
    height: auto;
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

/* Post Meta Banner Section */
.post-meta-banner {
    font-size: 0.9rem;
}

.post-meta-banner svg {
    stroke: currentColor;
    flex-shrink: 0;
}

.post-meta-banner span {
    font-weight: 500;
    text-shadow: 0 0 9px #000000a1;
}

.post-meta-banner > div {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.post-meta-banner > div:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Single Banner */
.single-banner {
    max-height: 500px;
    min-height: 400px;
}

.single-banner h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1.3;
}

.entry-content {
    color: #444;
    line-height: 2;
    font-size: 1.05rem;
}

.entry-content h2 {
    color: #1a1a1a;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-primary-color);
    font-weight: bold;
}

.entry-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.entry-content h4 {
    color: #333;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.entry-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.entry-content li {
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.entry-content blockquote {
    border-right: 4px solid var(--primary-color);
    background: var(--light-primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: #0d6b7d;
    text-decoration: none;
}

.entry-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #d63384;
}

.entry-content pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Sidebar Widgets */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.widget-title {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Table of Contents */
.toc-list li a {
    color: #555;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.toc-list li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.toc-list li a svg {
    stroke: var(--primary-color);
}

/* Related Posts in Sidebar */
.related-post-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    box-shadow: 0 3px 12px rgba(17, 136, 158, 0.1);
}

.related-post-item h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.related-post-item:hover h4 a {
    color: var(--primary-color);
}

.related-post-image {
    aspect-ratio: 16/9;
}

.related-post-image img {
    transition: transform 0.4s ease;
    object-fit: cover;
    height: 100%;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.bg-primary{
    background: var(--primary-color);
    color: #fff;
}

.entry-content ul li:before{
    content: '';
    background: var(--primary-color);
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    position: absolute;
    right: -19px;
    top: 13px;
}

.bg-light-primary-color{
    background: var(--light-primary-color);
}

.text-primary{
    color: var(--primary-color) !important;
}
.page-template-page-contact .breadcrumbs{
    position: absolute;
}

/* Responsive Design for Single Post */
@media (max-width: 991px) {
    .single-banner h1 {
        font-size: 2.5rem;
    }
    
    .post-meta-banner {
        font-size: 0.85rem;
    }
    
    .post-meta-banner > div {
        padding: 0.4rem 0.85rem;
    }
    
    .sidebar-sticky {
        position: static;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .entry-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .single-banner {
        min-height: 300px;
        max-height: 350px;
    }
    
    .single-banner h1 {
        font-size: 2rem;
    }
    
    .post-meta-banner {
        font-size: 0.8rem;
        gap: 0.5rem !important;
    }
    
    .post-meta-banner svg {
        width: 16px;
        height: 16px;
    }
    
    .post-meta-banner > div {
        padding: 0.35rem 0.75rem;
    }
    
    .post-article {
        padding: 1.5rem !important;
    }
    
    .entry-content h2 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }
    
    .entry-content h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .single-banner {
        min-height: 250px;
        max-height: 300px;
    }
    
    .single-banner h1 {
        font-size: 1.5rem;
    }
    
    .post-meta-banner {
        font-size: 0.75rem;
        gap: 0.4rem !important;
    }
    
    .post-meta-banner svg {
        width: 14px;
        height: 14px;
    }
    
    .post-meta-banner > div {
        padding: 0.3rem 0.6rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .entry-content {
        font-size: 0.95rem;
    }
    
    .entry-content h2 {
        font-size: 1.25rem;
    }
    
    .related-post-item {
        padding: 0.75rem;
    }
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: var(--light-primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 4px 15px rgba(17, 136, 158, 0.1);
}

.content-badge:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 136, 158, 0.25);
}

.content-badge svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.content-badge:hover svg {
    transform: rotate(360deg);
}

.content-inner {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.content-title {
    color: #1a1a1a;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.content-description {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-description p {
    margin-bottom: 1rem;
}

.content-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.4s backwards;
}

.content-image {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(17, 136, 158, 0.2);
    transition: all 0.4s ease;
}

.content-image img {
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-decoration {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 1.5rem;
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0.3;
}

.content-image-wrapper:hover .content-decoration {
    top: -35px;
    left: -35px;
    opacity: 0.6;
}

/* ============================================
   FUTURES SECTION
   ============================================ */
.futures {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.future-item {
    background: #fff;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.future-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #0d6b7d);
    transition: width 0.5s ease;
}

.future-item:hover::before {
    width: 100%;
}

.future-item::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(17, 136, 158, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.future-item:hover::after {
    bottom: -50px;
    left: -50px;
    opacity: 0.7;
}

.future-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(17, 136, 158, 0.2);
    border-color: var(--light-primary-color);
}

.future-icon-wrapper {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-primary-color);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.future-item:hover .future-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6b7d 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(17, 136, 158, 0.3);
}

.future-icon {
    max-width: 45px;
    max-height: 45px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.future-item:hover .future-icon {
    filter: brightness(0) invert(1);
    transform: scale(1.15);
}

.future-item-content {
    position: relative;
    z-index: 2;
}

.future-title {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.future-item:hover .future-title {
    color: var(--primary-color);
}

.future-description {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.future-arrow {
    width: 45px;
    height: 45px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.future-arrow svg {
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.future-item:hover .future-arrow {
    background: var(--primary-color);
    transform: translateX(-5px);
}

.future-item:hover .future-arrow svg {
    stroke: #fff;
    transform: translateX(3px);
}

.service-carousel-item{
    background: var(--primary-color);
    border-radius: 1rem;   
}
.service-carousel-item *{
    color: #fff !important
}
.service-carousel .container:before{
    content: '';
    position: absolute;
    top: -10%;
    right: 15px;
    width: 70%;
    height: 120%;
    background: var(--primary-color);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.1;
}

.service-carousel .swiper-pagination{
    bottom: -40px !important;
}

.swiper-pagination-bullet-active{
    background: var(--primary-color);
}

.service-carousel-items{
    border-radius: 1rem;
}

.step-item{
    background: var(--primary-color);
}

.call2action{
    background: var(--light-primary-color);
}

.text-left{
    text-align: left;
}

.service-carousel-items .swiper-wrapper{
    align-items: center;
}
.single-service .hero{
    padding-top: 0;
}

.footer-social-links svg{
    width: 20px;
    height: 20px;
}
.footer-social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    padding: 8px;
}
.footer-social-links{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-menu{
    margin: 0;
}
.footer-links-column li svg{
    opacity: 0.7;
    width: 20px;
    margin-left: 4px;
}
#footer-menu li::before{
    content: '';
    background: #fff;
    transition: width 0.3s ease;
    float: right;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 12px 0 0 8px;
    opacity: 0.7;
}
/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .warranty-cta-card {
        padding: 2rem !important;
    }
    
    .warranty-cta-title {
        font-size: 1.75rem;
    }
    
    .warranty-cta-description {
        font-size: 1rem;
    }
    
    .badge-wrapper svg {
        width: 50px;
        height: 50px;
    }
    
    .decoration-circle.circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .decoration-circle.circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .warranty-cta-action {
        margin-top: 2rem;
    }
    
    .warranty-services-grid .col-md-6 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .warranty-cta-title {
        font-size: 1.5rem;
    }
    
    .warranty-cta-description {
        font-size: 0.95rem;
    }
    
    .btn-warranty {
        font-size: 1rem;
        padding: 0.85rem 2rem !important;
    }
    
    .benefit-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .warranty-benefits {
        gap: 0.5rem !important;
    }
    
    .warranty-cta-info {
        padding: 1rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .hero p{
        font-size: 1rem;
    }

    .contact-hero-title {
        font-size: 1.5rem;
    }
    
    .warranty-cta-card {
        padding: 1.5rem !important;
    }
    
    .warranty-cta-title {
        font-size: 1.35rem;
    }
    
    .badge-wrapper svg {
        width: 45px;
        height: 45px;
    }
    
    .warranty-service-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .warranty-service-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .warranty-service-title {
        font-size: 0.9rem;
    }
    
    .benefit-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .benefit-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .decoration-circle {
        display: none;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
    
    .btn-warranty {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem !important;
    }
    
    .warranty-cta-info {
        margin-top: 1rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
    
    .info-item svg {
        width: 18px;
        height: 18px;
    }
    
    /* Contact Form Responsive */
    .contact-info-header {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-form-header {
        padding: 1rem !important;
    }
    
    .contact-form-body {
        padding: 1rem !important;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-form-default .form-label {
        font-size: 0.85rem;
    }
    
    .contact-form-default .form-label svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-submit {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }
}

/* Contact Form Messages & Loading */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6b7d 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 136, 158, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 136, 158, 0.4);
    background: linear-gradient(135deg, #0d6b7d 0%, var(--primary-color) 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    vertical-align: middle;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}