/**
 * GTechLogic - Custom Styles
 * Modern, clean professional design inspired by Codile
 */

:root {
    /* Color Scheme - Clean & Professional */
    --primary-color: #8B5CF6; /* Purple - matching brand color */
    --primary-dark: #7C3AED;
    --accent-red: #FF4444;
    --text-black: #000000;
    --text-gray: #666666;
    --text-light-gray: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
    --border-color: #E5E5E5;
    
    /* Shadows - Subtle and clean */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Global Styles */
body {
    font-family: 'Rethink Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6em;
    color: #212529BF;
    background-color: var(--bg-white);
    font-size: 16px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #212529;
    line-height: 1.5em;
    margin-bottom: 1rem;
}

h1, .display-3 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.5em;
}

h2, .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5em;
}

h3 {
    font-size: 2.0625rem;
    font-weight: 600;
    line-height: 1.5em;
}

h4 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5em;
}

h5 {
    font-size: 1.5625rem;
    font-weight: 600;
    line-height: 1.5em;
}

h6 {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.4em;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5em;
}

p {
    font-size: 1rem;
    line-height: 1.6em;
    color: #212529BF;
    font-weight: 400;
}

.lead {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 400;
}

/* Link Styles - Content Links in Paragraphs and Lists */
/* These rules apply to content areas, footer and nav have their own styles below */
/* Link styles - overridden by global styles in header.php for consistency */
p a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.lead a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.text-muted a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.content a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
section p a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.service-content p a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.card-body p a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
li a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.list-unstyled a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.card-body li a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.service-content li a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.bg-light li a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
ul a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
ol a:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link) {
    color: #8B5CF6 !important;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

p a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.lead a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.text-muted a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.content a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
section p a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.service-content p a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.card-body p a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
li a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.list-unstyled a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.card-body li a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.service-content li a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
.bg-light li a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
ul a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link),
ol a:hover:not(.nav-link):not(.dropdown-item):not(.footer-link):not(.footer-legal-link) {
    color: #8B5CF6 !important;
    text-decoration: underline;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Styles - Clean White Background */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: static;
}

.navbar-dark {
    background-color: var(--bg-white) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-black) !important;
}

.navbar-brand:hover {
    color: var(--text-black) !important;
}

/* Logo Styles - Image Logo - Overridden by global styles in header.php for consistency */
.site-logo {
    height: 45px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.site-logo:hover {
    opacity: 0.8;
}

.navbar-brand {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

/* Footer Logo */
.footer-logo-text {
    text-decoration: none;
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-logo {
        height: 40px;
        max-width: 200px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 180px;
    }
}

.nav-link {
    color: var(--text-black) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-toggler {
    border: 1px solid var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 0.5rem;
    z-index: 1050 !important;
}

.dropdown-item {
    color: var(--text-black);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

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

/* ========================================
   UNIFIED HERO SYSTEM
   ======================================== */

/* Base Hero Styles - Applied to ALL heroes */
.hero {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Content Wrapper */
.hero-content {
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    animation: heroFade 0.7s ease-out forwards;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Homepage Hero - Primary */
.hero--primary {
    min-height: 88vh;
    padding-top: 80px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #8c68a9 0%, #6b4d85 100%);
    color: #ffffff;
}

.hero--primary h1 {
    color: #ffffff;
}

.hero--primary p {
    color: rgba(255, 255, 255, 0.9);
}

.hero--primary .hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Inner Pages Hero - Standard - Overridden by global styles in header.php */
/* Hero styles now controlled globally for consistency */

/* Hero Wave SVG */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Card Hover Effects - Subtle for enterprise feel */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--primary-color) !important;
}

/* Trust Strip */
.trust-strip {
    border-top: 1px solid #dee2e6;
}

.trust-strip .small,
.trust-strip span.small {
    font-size: 0.85rem !important;
    line-height: 1.4;
}

/* Section Spacing - Clean and modern */
section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Section backgrounds - white for consistency (overridden by global styles) */
.seo-highlight,
.why-us-section,
.trust-strip {
    background-color: white !important;
}

/* Remove gradient backgrounds - Clean white design */
.bg-gradient-primary {
    background: var(--bg-white) !important;
}

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

@media (max-width: 768px) {
    .hero--primary {
        min-height: 75vh;
        padding-top: 60px;
        padding-bottom: 80px;
    }
    
    .hero--standard {
        min-height: 45vh;
        padding-top: 40px;
        padding-bottom: 80px;
    }
    
    /* Typography uses universal .hero h1 - no overrides needed */
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .section-sm {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .section-lg {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    
    .page-content,
    .service-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* B2B Travel Section - Light background */
.b2b-travel-section {
    background-color: var(--bg-light) !important;
    color: var(--text-black) !important;
}

.b2b-travel-section h2 {
    color: var(--text-black);
}

.b2b-travel-section .badge {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 6px;
}

/* Button styles - overridden by global styles in header.php for consistency */

/* API Integration Section */
.api-integration-section .card {
    background-color: #ffffff;
}

/* CTA Section - Clean white with dark text */
.cta-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--bg-white);
    color: var(--text-black);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-black);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .cta-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
}

/* Services Overview - Clean cards */
.services-overview {
    background-color: var(--bg-white);
}

.services-overview .card {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.services-overview .card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.services-overview .text-primary {
    color: var(--primary-color) !important;
}

.services-overview .card:hover .text-primary {
    color: var(--primary-color) !important;
}

/* Button Styles - Clean Black & Outlined */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.875rem;
    border: none;
}

.btn-primary,
.btn-light {
    background-color: var(--text-black) !important;
    color: var(--bg-white) !important;
    border: 2px solid var(--text-black) !important;
}

.btn-primary:hover,
.btn-light:hover {
    background-color: var(--text-black) !important;
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary,
.btn-outline-light {
    background-color: transparent !important;
    color: var(--text-black) !important;
    border: 2px solid var(--text-black) !important;
}

.btn-outline-primary:hover,
.btn-outline-light:hover {
    background-color: var(--text-black) !important;
    color: var(--bg-white) !important;
}

/* Homepage Hero Button Styles */
.hero--primary .btn-dark {
    background-color: #ffffff !important;
    color: #018fa6 !important;
    border: 2px solid #ffffff !important;
}

.hero--primary .btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero--primary .btn-outline-dark {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.hero--primary .btn-outline-dark:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.btn-lg {
    padding: 0.875rem 2.25rem;
    font-size: 0.9rem;
}

/* Card Styles - Clean and minimal */
.card {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-body {
    border-radius: 12px;
    padding: 2rem;
}

.card-title {
    color: var(--text-black);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.card-title h3,
.card-title h4 {
    font-size: 1.05rem;
}

.card-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Code Preview */
.code-preview code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Icon Styles */
i[class^="bi-"] {
    transition: transform 0.3s ease;
}

.hover-lift:hover i[class^="bi-"] {
    transform: scale(1.1);
}

/* Footer - White Background (overridden by .footer-modern) */
footer {
    background-color: white !important;
    color: var(--text-black);
    margin-top: 5rem;
    padding: 4rem 0 2rem 0;
}

/* Footer Container - Max Width & Centered */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Footer Content Grid - Equal Column Spacing */
.footer-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: start;
}

/* Footer Column Base Styles */
.footer-column {
    min-width: 0; /* Prevents overflow */
}

.footer-company {
    grid-column: span 1;
}

.footer-contact {
    grid-column: span 1;
    min-width: 160px; /* Ensure contact column doesn't shrink too much */
}

/* Footer Headings - Consistent Spacing */
.footer-heading {
    color: var(--text-black);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.2;
}

/* Footer Description */
.footer-description {
    font-size: 0.90rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

/* Footer Links - Consistent Styling */
footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.90rem;
    line-height: 1.5;
    word-break: normal;
}

footer a:hover {
    color: var(--text-black) !important;
}

footer .text-muted {
    color: var(--text-gray) !important;
}

footer p {
    color: var(--text-gray);
}

/* Footer List Items */
footer ul.list-unstyled {
    margin: 0;
    padding: 0;
}

footer ul.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Footer Contact Items - Prevent Awkward Wrapping */
.footer-contact-item {
    margin-bottom: 0.75rem !important;
}

.footer-phone {
    white-space: nowrap;
    display: inline-block;
}

/* Footer Divider */
.footer-divider {
    border-color: var(--border-color);
    margin: 2.5rem 0 1.5rem 0;
    opacity: 0.3;
    border-width: 0;
    border-top: 1px solid var(--border-color);
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left,
.footer-bottom-right {
    font-size: 0.90rem;
}

.footer-bottom-right {
    text-align: right;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .footer-company {
        grid-column: span 3;
    }
    
    .footer-contact {
        grid-column: span 1;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-company {
        grid-column: span 2;
    }
    
    .footer-contact {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-bottom-right {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-company,
    .footer-contact {
        grid-column: span 1;
    }
    
    footer {
        padding: 3rem 0 2rem 0;
    }
}

/* Forms */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-black);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(1, 143, 166, 0.15);
    outline: none;
}

.form-label {
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Text Color Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-gray) !important;
}

/* Hero Icon Labels */
.small,
.text-small {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1, .display-3 {
        font-size: 1.8rem;
        line-height: 1.25;
    }
    
    h2, .display-4 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.15rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    .display-5 {
        font-size: 1.4rem;
    }
    
    .lead {
        font-size: 0.95rem;
    }
    
    /* Mobile hero typography handled above in @media (max-width: 768px) */
    
    .card-title {
        font-size: 1rem;
    }
}

/* Legacy hero classes removed - using unified .hero system */

/* Reusable Section Spacing Classes */
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Page Content Sections */
.page-content,
.service-content {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-white);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
/* WhatsApp Button (Fixed Left Corner) */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Scroll to Top Button (Fixed Right Corner) */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #018fa6;
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(1, 143, 166, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background-color: #017089;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(1, 143, 166, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* SEO Growth Card - Animated Line Chart */
.seo-growth-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    transition: box-shadow 0.3s ease;
}

.seo-growth-card:hover {
    box-shadow: var(--shadow-lg);
}

.seo-growth-card .card-header {
    margin-bottom: 14px;
}

.seo-growth-card .card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 4px;
    line-height: 1.3;
}

.seo-growth-card .card-header p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.growth-chart {
    width: 100%;
    height: 200px;
    margin: 10px 0;
    display: block;
}

/* Month labels - always visible */
.growth-chart .month-label {
    font-size: 11px;
    fill: #9ca3af;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    opacity: 1;
}

/* SEO Highlight Section - Ensure proper column width */
.seo-highlight .col-lg-6:last-child {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.seo-highlight .seo-growth-card {
    width: 100%;
    max-width: 100%;
}

/* Responsive adjustments for SEO Growth Card */
@media (max-width: 992px) {
    .seo-highlight .col-lg-6:last-child {
        justify-content: center;
    }
    
    .seo-growth-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .seo-growth-card {
        padding: 18px;
    }
    
    .growth-chart {
        height: 180px;
    }
    
    .seo-growth-card .card-header h4 {
        font-size: 1.1rem;
    }
    
    .growth-chart .month-label {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .growth-chart {
        height: 160px;
    }
}

@media print {
    .navbar,
    footer,
    .btn,
    .whatsapp-button,
    .scroll-to-top {
        display: none !important;
    }
    
    .seo-growth-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    .growth-chart .line {
        animation: none;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }
}

/* Custom Spacing - Increased padding for homepage sections */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
    .py-6 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
    
    /* Responsive Typography */
    h1 {
        font-size: 2.25rem !important;
    }
    
    h2 {
        font-size: 1.6875rem !important;
    }
    
    h3 {
        font-size: 1.4375rem !important;
    }
    
    h4 {
        font-size: 1.375rem !important;
    }
    
    h5 {
        font-size: 1.3125rem !important;
    }
    
    h6 {
        font-size: 0.8125rem !important;
    }
}

