/* Modern CSS for InTeh Website - Enhanced 2025 */
:root {
    --primary-color: #6366F1;
    --secondary-color: #8B5CF6;
    --accent-color: #EC4899;
    --accent-secondary: #06B6D4;
    --dark-color: #0F172A;
    --light-color: #F8FAFC;
    --text-color: #334155;
    --text-light: #64748B;
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4C1D95 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(240,100%,70%,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189,100%,56%,0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(280,100%,70%,0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(340,100%,70%,0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(240,100%,70%,0.15) 0px, transparent 50%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(99, 102, 241, 0.15);
    --shadow-xl: 0 25px 50px rgba(99, 102, 241, 0.2);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom selection */
::selection {
    background: var(--primary-color);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.logo-owner {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s var(--transition-smooth);
}

.logo:hover .logo-text::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    display: none;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    padding: 1rem 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.5rem;
    color: var(--text-color) !important;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary-color) !important;
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, 10%) scale(1.1); }
    50% { transform: translate(-5%, 5%) scale(0.95); }
    75% { transform: translate(10%, -5%) scale(1.05); }
}

/* Floating geometric shapes */
.hero .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: floatShape 15s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.floating-shape:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 15%;
    animation-delay: -7s;
}

.floating-shape:nth-child(5) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 25%;
    animation-delay: -3s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: white;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::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.5s ease;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.03) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-features li:nth-child(1) { transition-delay: 0.1s; }
.service-features li:nth-child(2) { transition-delay: 0.15s; }
.service-features li:nth-child(3) { transition-delay: 0.2s; }
.service-features li:nth-child(4) { transition-delay: 0.25s; }

.service-features i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    height: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.btn-service {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--transition-smooth);
    padding: 0.5rem 0;
    position: relative;
}

.btn-service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.btn-service:hover {
    gap: 1rem;
}

.btn-service:hover::after {
    width: 100%;
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-bounce);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-primary);
}

.feature i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.feature:hover i {
    -webkit-text-fill-color: white;
    background: none;
}

/* Override hover effects for icons with inline styles (white background feature icons) */
.feature-icon[style*="white"] {
    background: white !important;
}

.feature:hover .feature-icon[style*="white"] {
    background: white !important;
}

.feature-icon[style*="white"] i[style*="color"] {
    -webkit-text-fill-color: unset !important;
    background: none !important;
    color: inherit;
}

.feature:hover .feature-icon[style*="white"] i[style*="color"] {
    -webkit-text-fill-color: unset !important;
    background: none !important;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    flex: 1;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat h3 {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: rgba(255,255,255,0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s var(--transition-smooth);
}

.info-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: white;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.info-item h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.info-item p {
    color: rgba(255,255,255,0.8);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    background: var(--light-color);
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s var(--transition-bounce);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth);
    z-index: 99;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.visible:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-column > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 0.5rem 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    font-weight: 600;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu a {
        color: #fff !important;
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown > a {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: rgba(20, 30, 48, 0.95);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease, padding 0.3s ease, margin 0.3s ease;
        width: 90%;
        min-width: unset;
        left: auto !important;
        margin: 0 auto;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.75rem 0;
        margin-top: 0.5rem;
    }

    .dropdown-menu li {
        width: 100%;
        text-align: center;
        padding: 0 !important;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9) !important;
        justify-content: center;
        padding: 0.7rem 1rem !important;
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .dropdown-menu a i {
        color: var(--accent-secondary);
        margin-right: 10px;
    }

    .dropdown-menu a:hover {
        background: rgba(99, 102, 241, 0.3);
        color: #fff !important;
        padding-left: 1rem !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-shape {
        display: none;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        right: 90px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor glow effect for desktop */
@media (hover: hover) {
    .cursor-glow {
        position: fixed;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    body:hover .cursor-glow {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE STYLES FOR ALL PAGES
   ============================================ */

/* Responsive grid utility classes */
.grid-responsive-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-responsive-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
}

.grid-responsive-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
}

.grid-responsive-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 15px;
}

.flex-responsive {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.flex-responsive-stats {
    display: flex;
    gap: 40px;
}

.flex-responsive-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.phone-mockups-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.phone-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.phone-side-left {
    left: 0;
    transform: translateY(-50%) rotate(-8deg);
}

.phone-side-right {
    right: 0;
    transform: translateY(-50%) rotate(8deg);
}

.floating-element {
    position: absolute;
    z-index: 2;
}

.payment-methods-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-card {
    text-align: center;
    padding: 25px 20px;
    flex: 1;
    max-width: 160px;
    min-width: 120px;
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .grid-responsive-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-responsive-4,
    .services-grid.grid-responsive-4,
    .features-grid.grid-responsive-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .grid-responsive-6,
    .services-grid.grid-responsive-6 {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .grid-responsive-3,
    .services-grid.grid-responsive-3,
    .features-grid.grid-responsive-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .phone-mockups-container {
        min-height: 450px;
    }

    .phone-side {
        display: none;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .grid-responsive-2,
    .grid-responsive-3,
    .grid-responsive-4,
    .grid-responsive-6,
    .services-grid.grid-responsive-3,
    .services-grid.grid-responsive-4,
    .services-grid.grid-responsive-6,
    .features-grid.grid-responsive-2,
    .features-grid.grid-responsive-3,
    .features-grid.grid-responsive-4 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .flex-responsive-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .flex-responsive-stats > div {
        flex: 0 0 30%;
        min-width: 80px;
    }

    .flex-responsive-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .phone-mockups-container {
        min-height: 400px;
    }

    .floating-element {
        display: none;
    }

    .payment-methods-row {
        justify-content: center;
    }

    .payment-card {
        flex: 0 0 45%;
        max-width: 45%;
    }

    /* Section padding */
    section.mobile-section {
        padding: 60px 0 !important;
    }

    section.mobile-section-flush {
        padding: 40px 0 0 0 !important;
    }

    /* Typography responsive */
    .text-responsive-lg {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .text-responsive-md {
        font-size: 1rem !important;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .payment-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .flex-responsive-stats > div {
        flex: 0 0 100%;
    }

    .text-responsive-lg {
        font-size: 1.5rem !important;
    }

    .phone-mockups-container {
        min-height: 350px;
    }

    /* Phone center only */
    .phone-mockups-container > div:not(.phone-side):not(.floating-element) {
        transform: scale(0.9);
    }
}

/* ============================================
   ADDITIONAL RESPONSIVE HELPERS
   ============================================ */

/* Demo section badges row */
.demo-badges-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .demo-badges-row {
        gap: 15px;
    }

    .demo-badges-row > div {
        flex: 0 0 45%;
        justify-content: flex-start;
    }

    /* Browser mockup floating elements hide */
    .browser-floating {
        display: none !important;
    }

    /* Section container full width */
    section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Inline h2 responsive */
    section h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    /* Mobile experience section grid */
    .mobile-experience-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    /* Feature list items on mobile */
    .feature-list-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .demo-badges-row > div {
        flex: 0 0 100%;
    }

    section h2 {
        font-size: 1.4rem !important;
    }

    section p {
        font-size: 0.95rem !important;
    }
}

/* ============================================
   CONTACT SECTION RESPONSIVE
   ============================================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .contact-info-cards {
        order: 2 !important;
    }

    .contact-form-box {
        order: 1 !important;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    #contact {
        padding: 60px 0 !important;
    }

    #contact .container {
        padding: 0 20px !important;
    }

    #contact .section-header {
        margin-bottom: 40px !important;
    }

    #contact .section-header h2 {
        font-size: 2rem !important;
    }

    #contact .section-header p {
        font-size: 1rem !important;
    }

    .contact-grid {
        gap: 30px !important;
    }

    /* Form box styling for mobile */
    .contact-form-box {
        padding: 25px !important;
        border-radius: 20px !important;
    }

    .contact-form-title {
        font-size: 1.3rem !important;
    }

    /* Form inputs */
    .contact-form-box input,
    .contact-form-box select,
    .contact-form-box textarea {
        padding: 14px 16px !important;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Contact cards */
    .contact-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .contact-card-row {
        padding: 18px 20px !important;
        gap: 15px !important;
    }

    .contact-card-icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        margin-bottom: 15px !important;
    }

    .contact-card-icon-sm {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 10px !important;
    }

    .contact-card h4 {
        font-size: 1.15rem !important;
    }

    .contact-card-row h4 {
        font-size: 0.95rem !important;
    }

    .contact-card p {
        font-size: 0.9rem !important;
    }

    /* Submit button */
    .contact-form-box button[type="submit"] {
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    /* Trust badges */
    .trust-badges {
        flex-wrap: wrap !important;
        gap: 15px 25px !important;
        justify-content: center !important;
    }
}

/* Small mobile - 480px */
@media (max-width: 480px) {
    #contact {
        padding: 50px 0 !important;
    }

    #contact .container {
        padding: 0 15px !important;
    }

    #contact .section-header h2 {
        font-size: 1.6rem !important;
    }

    #contact .section-header p {
        font-size: 0.9rem !important;
    }

    .contact-grid {
        gap: 25px !important;
    }

    /* Form box */
    .contact-form-box {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .contact-form-title {
        font-size: 1.2rem !important;
    }

    /* Form inputs */
    .contact-form-box input,
    .contact-form-box select,
    .contact-form-box textarea {
        padding: 12px 14px !important;
        border-radius: 10px !important;
    }

    /* Contact cards */
    .contact-card {
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .contact-card-row {
        padding: 15px 18px !important;
        gap: 12px !important;
    }

    .contact-card-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .contact-card-icon i {
        font-size: 1.2rem !important;
    }

    .contact-card-icon-sm {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .contact-card-icon-sm i {
        font-size: 1rem !important;
    }

    .contact-card-main h4 {
        font-size: 1.1rem !important;
    }

    .contact-card-row h4 {
        font-size: 0.9rem !important;
    }

    .contact-card p {
        font-size: 0.85rem !important;
    }

    /* Submit button */
    .contact-form-box button[type="submit"] {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }

    /* Trust badges stack on small screens */
    .trust-badges {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
    }

    .trust-badges > div {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Section header badge */
    #contact .section-header > div:first-child {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* Extra small mobile - 360px */
@media (max-width: 360px) {
    #contact .section-header h2 {
        font-size: 1.4rem !important;
    }

    .contact-form-box {
        padding: 15px !important;
    }

    .contact-card {
        padding: 15px !important;
    }

    .contact-card-row {
        padding: 12px 15px !important;
    }

    .contact-card-icon-sm {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }
}

/* ============================================
   HCAPTCHA RESPONSIVE
   ============================================ */

.hcaptcha-container {
    display: flex;
    justify-content: center;
}

/* Scale hCaptcha on smaller screens */
@media (max-width: 480px) {
    .hcaptcha-container {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 360px) {
    .hcaptcha-container {
        transform: scale(0.77);
        transform-origin: center;
    }
}

/* ============================================
   WEB SOLUTIONS SECTION RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .web-solutions {
        padding: 80px 0 !important;
    }

    .web-solutions h2 {
        font-size: 2.5rem !important;
    }

    .web-features-banner {
        gap: 25px !important;
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .web-solutions {
        padding: 60px 0 !important;
    }

    .web-solutions h2 {
        font-size: 2rem !important;
    }

    .web-solutions > .container > div:first-child {
        margin-bottom: 50px !important;
    }

    .web-solutions > .container > div:first-child p {
        font-size: 1.05rem !important;
    }

    .web-features-banner {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 25px !important;
        align-items: flex-start !important;
    }

    .web-features-banner > div {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .web-solutions h2 {
        font-size: 1.7rem !important;
    }

    .web-solutions > .container > div:first-child > div:first-child {
        padding: 8px 16px !important;
    }

    .web-solutions > .container > div:first-child > div:first-child span {
        font-size: 0.8rem !important;
    }

    .grid-responsive-3 > div {
        padding: 25px !important;
    }

    .grid-responsive-3 > div > div:first-of-type {
        width: 55px !important;
        height: 55px !important;
    }

    .grid-responsive-3 > div h3 {
        font-size: 1.3rem !important;
    }
}