/* ========================================
   DIGITAL CORES - MAIN STYLES
   ======================================== */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a1a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- GRADIENT TEXT ----- */
.gradient-text {
    background: linear-gradient(135deg, #6c63ff, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- SECTION HEADER ----- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6c63ff;
    background: rgba(108, 99, 255, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-header p {
    color: #8888aa;
    max-width: 550px;
    margin: 12px auto 0;
    font-size: 1.05rem;
}

/* ----- BUTTONS ----- */
.btn-primary {
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

.btn-ghost {
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.btn-ghost:hover {
    border-color: #6c63ff;
    background: rgba(108, 99, 255, 0.1);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: #0a0a1a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(108, 99, 255, 0.15);
    border-top-color: #6c63ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #6c63ff;
    font-size: 1.8rem;
}

.logo span {
    color: #6c63ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c63ff;
    transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-cta {
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    padding: 8px 24px;
    border-radius: 50px;
    color: #fff !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #6c63ff;
    top: -150px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    bottom: -50px;
    left: -100px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #3b82f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(108, 99, 255, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #8888aa;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatars {
    display: flex;
    align-items: center;
}

.client-avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #0a0a1a;
    margin-right: -8px;
}

.client-avatars .more {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.75rem;
    border-color: #0a0a1a;
}

.hero-clients p {
    color: #8888aa;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.hero-clients p strong {
    color: #fff;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6c63ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat label {
    font-size: 0.8rem;
    color: #8888aa;
}

.hero-illustration {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-illustration i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.hero-illustration i:hover {
    color: #6c63ff;
    transform: scale(1.2);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: #0f0f23;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 30px;
    border-radius: 24px;
    transition: all 0.4s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.3);
    background: rgba(108, 99, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #6c63ff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #8888aa;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-link {
    color: #6c63ff;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: #0a0a1a;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.about-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    transform: scale(1.02);
}

.about-card i {
    font-size: 2rem;
    color: #6c63ff;
    margin-bottom: 10px;
}

.about-card span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.about-card p {
    color: #8888aa;
    font-size: 0.85rem;
}

.about-card-1 {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-content > p {
    color: #8888aa;
    margin-bottom: 28px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature i {
    color: #6c63ff;
    font-size: 1.2rem;
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 1rem;
}

.about-feature p {
    color: #8888aa;
    font-size: 0.9rem;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio {
    padding: 100px 0;
    background: #0f0f23;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.portfolio-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
}

.portfolio-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.portfolio-info p {
    color: #8888aa;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(108, 99, 255, 0.2);
    color: #6c63ff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: #0a0a1a;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card-inner .stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-card-inner blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
}

.testimonial-card-inner .client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card-inner .client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.testimonial-card-inner .client-name {
    font-weight: 700;
}

.testimonial-card-inner .client-role {
    color: #8888aa;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.slider-btn:hover {
    background: rgba(108, 99, 255, 0.2);
    border-color: #6c63ff;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots span.active {
    background: #6c63ff;
    width: 28px;
    border-radius: 4px;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a, #0f0f23);
}

.cta-container {
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: #8888aa;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: #0f0f23;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-box > p {
    color: #8888aa;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c63ff;
    font-size: 1.2rem;
}

.contact-detail h4 {
    font-size: 0.9rem;
    color: #8888aa;
    font-weight: 500;
}

.contact-detail p {
    font-weight: 600;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8888aa;
    transition: 0.3s;
}

.contact-social a:hover {
    border-color: #6c63ff;
    color: #6c63ff;
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555577;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6c63ff;
    background: rgba(108, 99, 255, 0.04);
}

.form-group select option {
    background: #0a0a1a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #050510;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-brand > p {
    color: #8888aa;
    max-width: 300px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-newsletter p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #555577;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6c63ff;
}

.newsletter-form button {
    padding: 10px 16px;
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    color: #8888aa;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #6c63ff;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: #555577;
    font-size: 0.9rem;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablets & small laptops */
@media (max-width: 992px) {
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 100%;
    }

    .about-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #0a0a1a;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 16px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        transition: 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-stat .stat-number {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card span {
        font-size: 1.4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .testimonial-card-inner {
        padding: 24px;
    }

    .testimonial-card-inner blockquote {
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .hero-stat .stat-number {
        font-size: 1.4rem;
    }

    .hero-illustration i {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-card-1 {
        grid-row: auto;
    }

    .contact-info-box h2 {
        font-size: 1.8rem;
    }
}