/* ========================================
   AI LMS Landing Page - Custom Styles
   Using Boostly Design + AI LMS Content
======================================== */

:root {
    --primary: #A0EA71;
    --primary-dark: #8BD55F;
    --secondary: #173401;
    --dark: #0a0a0a;
    --dark-2: #121212;
    --dark-3: #1a1a1a;
    --light: #f8f9fa;
    --text: #b0b0b0;
    --text-light: #ffffff;
    --gold: #F2CB2F;
}

/* Logo Text Style */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.logo-text:hover {
    color: var(--primary-dark);
}

/* ========== Hero Section ========== */
.gt-hero-2 {
    background: var(--dark);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.gt-hero-2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(160, 234, 113, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(160, 234, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.gt-hero-2-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.gt-hero-2-content h1 span {
    color: var(--primary);
}

.gt-hero-2-content .sub-title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(160, 234, 113, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

.gt-hero-2-content .sub-title i {
    margin-right: 8px;
}

.gt-hero-2-content p {
    color: var(--text);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.video-btn .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s;
}

.video-btn:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(160, 234, 113, 0.4);
}

.hero-counter {
    display: flex;
    gap: 50px;
}

.counter-item h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.counter-item p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}

.gt-hero-2-image {
    position: relative;
}

.gt-hero-2-image .main-image {
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(160, 234, 113, 0.2));
}

/* Hero Visual - CSS-based alternative to images */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(160, 234, 113, 0.15);
}

.hero-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.hero-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.hero-card p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* ========== Buttons ========== */
.gt-theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.gt-theme-btn.style-2 {
    background: var(--primary);
    color: var(--secondary);
}

.gt-theme-btn.style-2:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(160, 234, 113, 0.3);
}

.gt-theme-btn.style-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gt-theme-btn.style-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ========== Section Titles ========== */
.gt-section-title .sub-title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(160, 234, 113, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

.gt-section-title .sub-title i {
    margin-right: 8px;
}

.gt-section-title h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.gt-section-title h2 span {
    color: var(--primary);
}

.section-padding {
    padding: 100px 0;
}

/* ========== Features Section ========== */
.gt-feature-section-2 {
    background: var(--dark);
}

.gt-feature-section-2 .gt-section-title h2 {
    color: var(--text-light);
}

.feature-box {
    background: var(--dark-2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(160, 234, 113, 0.1);
}

.feature-box .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--secondary);
}

.feature-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ========== About Section ========== */
.gt-about-section-2 {
    background: var(--light);
}

.about-image {
    position: relative;
}

.about-image .main-img {
    max-width: 100%;
    border-radius: 20px;
}

.about-image .shape-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

.about-content .sub-title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.about-content .sub-title i {
    margin-right: 8px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary);
}

/* About Visual - CSS-based stats display */
.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    align-content: center;
}

.about-stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-stat-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.about-stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.about-stat-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.about-list li {
    color: #333;
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li i {
    color: var(--primary);
    font-size: 18px;
}

/* ========== App Download Section ========== */
.gt-app-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.app-content .sub-title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.app-content .sub-title i {
    margin-right: 8px;
}

.app-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.app-content h2 span {
    color: var(--primary);
}

.app-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.app-features li {
    color: var(--text-light);
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-features li i {
    color: var(--primary);
    font-size: 16px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn img {
    height: 50px;
    transition: all 0.3s;
}

.app-btn:hover img {
    transform: scale(1.05);
}

/* Phone Mockup and Store Buttons - CSS-based */
.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 40px;
    padding: 15px;
    border: 3px solid #333;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255,255,255,0.05);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 15px;
}

.phone-screen {
    background: var(--dark-2);
    border-radius: 30px;
    height: 100%;
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.chat-bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease-out both;
}

.chat-bubble.user {
    background: var(--primary);
    color: var(--secondary);
    margin-left: auto;
    border-bottom-right-radius: 6px;
    animation-delay: 0.2s;
}

.chat-bubble.ai {
    background: #2a2a2a;
    color: var(--text-light);
    border-bottom-left-radius: 6px;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s;
}

.store-btn:hover {
    background: var(--dark-3);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.store-btn i {
    font-size: 28px;
    color: var(--text-light);
}

.store-btn div {
    text-align: left;
}

.store-btn small {
    font-size: 11px;
    color: var(--text);
    display: block;
}

.store-btn span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.store-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.store-btn.disabled:hover {
    transform: none;
    border-color: rgba(255,255,255,0.1);
}

.app-image {
    position: relative;
}

.app-image .dashboard-img {
    max-width: 100%;
}

.app-image .mobile-img {
    position: absolute;
    bottom: -20px;
    right: 0;
    max-width: 40%;
}

/* ========== Pricing Section ========== */
.gt-pricing-section-2 {
    background: var(--dark);
    position: relative;
}

.gt-pricing-section-2 .gt-section-title h2 {
    color: var(--text-light);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
}

.toggle-label .badge {
    background: var(--primary);
    color: var(--secondary);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-3);
    border-radius: 32px;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: var(--primary);
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider:before {
    transform: translateX(28px);
}

.pricing-box {
    background: var(--dark-2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s;
    height: 100%;
}

.pricing-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-box.popular {
    background: linear-gradient(180deg, var(--dark-2) 0%, rgba(160, 234, 113, 0.1) 100%);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-header h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price sup {
    font-size: 24px;
    color: var(--text-light);
}

.price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
}

.price sub {
    font-size: 16px;
    color: var(--text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    color: var(--text-light);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-features li.disabled {
    color: var(--text);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: #ff6b6b;
}

/* ========== FAQ Section ========== */
.gt-faq-section {
    background: var(--light);
    position: relative;
}

.faq-wrapper {
    position: relative;
}

.faq-line {
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    z-index: 0;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    padding: 24px 30px;
    background: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: white;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A0EA71'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 30px 24px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* ========== Testimonials Section ========== */
.gt-testimonial-section {
    background: var(--dark);
}

.gt-testimonial-section .gt-section-title h2 {
    color: var(--text-light);
}

.testimonial-box {
    background: var(--dark-2);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.testimonial-box:hover {
    border-color: var(--primary);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon img {
    height: 40px;
    opacity: 0.3;
}

.testimonial-box p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Avatar for testimonials - CSS-based */
.client-info .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

/* Star ratings */
.testimonial-box .stars {
    margin-bottom: 20px;
}

.testimonial-box .stars i {
    color: #FFD700;
    font-size: 14px;
    margin-right: 3px;
}

.client-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.client-info span {
    font-size: 14px;
    color: var(--primary);
}

.swiper-pagination-bullet {
    background: var(--text);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* ========== CTA Section ========== */
.gt-cta-section {
    background: var(--dark);
    padding: 100px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--dark-2) 0%, rgba(160, 234, 113, 0.08) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(160, 234, 113, 0.2);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-vector {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

/* ========== Footer ========== */
.gt-footer-section {
    background: var(--dark);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-vector {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget .footer-logo {
    margin-bottom: 20px;
}

.footer-widget .footer-logo .logo-text {
    font-size: 32px;
}

.footer-widget p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
}

.footer-widget h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 14px 20px;
    color: var(--text-light);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form .gt-theme-btn {
    padding: 14px 24px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ========== Header ========== */
.gt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.3s;
}

.gt-header.sticky {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}

.main-menu a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.main-menu a:hover {
    color: var(--primary);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.sidebar-btn {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.sidebar-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    left: 0;
    transition: all 0.3s;
}

.bar-1 { top: 0; }
.bar-2 { top: 11px; }
.bar-3 { top: 22px; }

/* ========== Responsive ========== */
@media (max-width: 1199px) {
    .gt-hero-2-content h1 {
        font-size: 44px;
    }
    .hero-counter {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .gt-hero-2 {
        padding: 140px 0 80px;
    }
    .gt-hero-2-content {
        margin-bottom: 50px;
    }
    .gt-hero-2-content h1 {
        font-size: 38px;
    }
    .about-image {
        margin-bottom: 40px;
    }
    .about-visual {
        margin-bottom: 40px;
    }
    .app-content {
        margin-bottom: 40px;
    }
    .app-visual {
        margin-bottom: 40px;
    }
    .phone-mockup {
        width: 240px;
        height: 420px;
    }
    .cta-wrapper {
        padding: 50px 30px;
    }
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .gt-hero-2-content h1 {
        font-size: 32px;
    }
    .hero-btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hero-counter {
        flex-wrap: wrap;
    }
    .counter-item h2 {
        font-size: 32px;
    }
    .hero-visual {
        grid-template-columns: 1fr;
    }
    .about-visual {
        grid-template-columns: 1fr;
    }
    .about-stat-card h3 {
        font-size: 28px;
    }
    .gt-section-title h2 {
        font-size: 32px;
    }
    .about-content h2 {
        font-size: 30px;
    }
    .app-content h2 {
        font-size: 32px;
    }
    .app-buttons {
        flex-direction: column;
    }
    .phone-mockup {
        width: 220px;
        height: 380px;
    }
    .chat-bubble {
        font-size: 12px;
        padding: 10px 14px;
    }
    .pricing-box {
        padding: 30px 20px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/* iOS Note */
.ios-note {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(160, 234, 113, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--text);
}

.ios-note i {
    color: var(--primary);
    margin-right: 6px;
}

/* Contact Email */
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--primary-dark);
}

.contact-email i {
    font-size: 18px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-text {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    right: 75px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float .whatsapp-text {
        display: none;
    }
}
