.hero-section {
	display: flex;
	align-items: center;
}

.banner {
	width: 100%;	
}

.call-to-action {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 20px;
    gap: 10px;
}

.cta-btn {
	position: relative;
	width: 36px;
	height: 36px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.cta-btn:focus {
    outline: none;
}
.cta-btn.bg-info:hover {
    background-color: #3bafda !important;
}

.cta-btn i {
    font-size: 16px;
    z-index: 10;
}

.cta-label {
	position: absolute;
	right: 18px;
	height: 36px;
	line-height: 36px;
	white-space: nowrap;
	border-radius: 20px 0 0 20px;;
	color: #fff;
	padding: 0 20px;;
	opacity: 0;
	transform: translateX(10px);
	transition: all 0.3s ease;
}

.cta-btn:hover .cta-label {
	opacity: 1;
    transform: translateX(0px);
}

/* Hover-based menu button for small and medium screens */
.cta-hover-menu {
    display: none;
    position: fixed;
    bottom: 80px; /* Position above scroll-to-top button */
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.cta-hover-menu.scrolled {
    bottom: 75px;
    right: 15px;
    transform: scale(0.9);
}

.cta-hover-toggle {
    width: 48px;
    height: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.cta-hover-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-hover-menu.scrolled .cta-hover-toggle {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.cta-hover-toggle i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-hover-menu:hover .cta-hover-toggle i {
    transform: rotate(180deg);
}

/* Hover dropdown menu */
.cta-hover-dropdown {
    position: absolute;
    bottom: 100%; /* Position above the button when it's at bottom */
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 10px; /* Space between dropdown and button */
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Slide up effect */
    transition: all 0.3s ease;
}

.cta-hover-menu:hover .cta-hover-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-hover-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 5px 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    text-align: left;
    color: #333;
    text-decoration: none;
}

.cta-hover-item:hover {
    background-color: rgba(52, 144, 220, 0.1);
    color: #333;
    text-decoration: none;
}

.cta-hover-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #3490dc;
}

.intro-content {
	margin: 20px 100px;
}

.content-section {
	margin-top: 80px;
}

.content-headline i,
.free-trial-icon{
    margin-right: 10px;
}

.content-desc .col-md-4 {
    padding: 20px;
}

.desc-title {
    text-align: center;
}

.col-md-4 i {
	display: flex;
    font-size: 48px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.faq-item {
	background: #fff;
	margin-bottom: 10px;
	padding: 10px 20px;
	border-radius: 15px;
	cursor: pointer;
	transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-item:focus,
.faq-ques:focus {
    outline: none;
    border: none;
}

.faq-item:active {
	transform: translateY(1px);
}

.faq-item.active {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-ques {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 0;
	border: none;
	width: 100%;
	cursor: pointer;
}

.faq-ques i {
	font-size: 32px;
	transition: opacity 0.3s ease;
}

.faq-item.active .faq-ques i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.faq-ans {
    display: none;
    margin-top: 10px;
    margin-bottom: 5px;
}

.contact-section {
    margin: 0 40px;
}

.gg-map {
    display: flex;
    justify-content: right;
}

/* RESPONSIVE */
/* Large screens (desktop) - default styles above */
@media (min-width: 1200px) {
    .call-to-action {
        display: flex;
    }
    
    .cta-hover-menu {
        display: none;
    }
}

/* Medium screens (tablets including iPad Pro) and Small screens (smartphones) */
@media (max-width: 1199.98px) {
    .call-to-action {
        display: none;
    }
    
    .cta-hover-menu {
        display: block;
    }
    
    .hero-section {
        margin-bottom: 20px;
    }
    
    .content-wrapper {
        margin-top: 0;
    }
    
    .intro-content {
        margin: 20px 50px;
    }
    
    .content-desc .col-md-4 {
        padding: 15px;
    }
    
    .col-md-4 i {
        font-size: 40px;
    }
    
    .contact-section {
        margin: 0 20px;
    }
    
    .gg-map iframe {
        width: 100%;
        height: 250px;
    }
}

/* Tablet specific adjustments (iPad Pro 11" and 12.9") */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .cta-hover-toggle {
        width: 52px;
        height: 52px;
    }
    
    .cta-hover-toggle i {
        font-size: 22px;
    }
    
    .cta-hover-dropdown {
        min-width: 220px;
        padding: 12px;
    }
    
    .cta-hover-item {
        padding: 12px 18px;
        font-size: 1rem;
    }
    
    .intro-content {
        margin: 20px 60px;
    }
}

/* Small screens (smartphones) specific adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .intro-content {
        margin: 15px;
    }
    
    .content-section {
        margin-top: 40px;
    }
    
    .content-desc .col-md-4 {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .desc-title {
        font-size: 1.2rem;
    }
    
    .col-md-4 i {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .content-headline {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 8px;
    }
    
    .faq-ques {
        font-size: 0.95rem;
    }
    
    .faq-ques i {
        font-size: 24px;
    }
    
    .contact-section {
        margin: 0 10px;
    }
    
    .gg-map {
        justify-content: center;
        margin-top: 20px;
    }
    
    .gg-map iframe {
        width: 100%;
        height: 200px;
        max-width: 350px;
    }
    
    .intro-image {
        margin-top: 20px;
    }
    
    .content-desc.row > div {
        margin-bottom: 25px;
    }
    
    .cta-hover-toggle {
        width: 44px;
        height: 44px;
    }
    
    .cta-hover-dropdown {
        min-width: 180px;
    }
}