:root {
    --primary-black: #000000;
    --dark-grey: #1A1A1A;
    --medium-grey: #333333;
    --light-grey: #888888;
    --white: #FFFFFF;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(255, 255, 255, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-black);
    border: 1px solid var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--medium-grey);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.full-width {
    width: 100%;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-content {
    text-align: center;
    z-index: 2;
}

.loader-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: glowPulse 2s infinite alternate;
}

.loader-subtitle {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.progress-container {
    width: 300px;
    height: 2px;
    background-color: var(--dark-grey);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--dark-grey), var(--white));
    animation: progressFill 2.5s ease-in-out forwards;
}

.light-streaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: streakMove 3s linear infinite;
    pointer-events: none;
}

/* Navigation */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    transition: padding 0.3s ease;

    /* Add background image */
    background-image: url('/images/chuttersnap-hSBcvsCHg24-unsplash.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: sticky;
}

/* Optional: overlay to keep text readable */
#navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: -1;
}

#navbar.scrolled {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    transform: scale(1.03);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('/images/rodion-kutsaiev-s0xEPfyYjfU-unsplash.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Overlay to keep content readable */
#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 26, 26, 0.6) 0%, rgba(0, 0, 0, 0.8) 70%);
    z-index: 1;
}

/* Hero content */
.hero-content {
    text-align: center;
    z-index: 2;
    /* make sure content is above overlay */
    max-width: 800px;
    padding: 0 1rem;
}


.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 3s;
    /* Delays until loading screen done */
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 3.3s;
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 3.6s;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDAwIiAvPgo8cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjMzMzIiBvcGFjaXR5PSIwLjEiIC8+Cjwvc3ZnPg==');
    opacity: 0.3;
    pointer-events: none;
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card.active .toggle-icon {
    transform: rotate(45deg);
}

.card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0.8;
}

.service-card.active .card-body {
    max-height: 200px;
    margin-top: 1rem;
}


/* Pricing Section */
.pricing-category {
    margin-bottom: 4rem;
}

.category-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.pricing-card {
    background-color: var(--dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: #222;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--light-grey);
    font-weight: 400;
}

.ranking-score {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin-bottom: 1rem;
    font-style: italic;
}

.features-list {
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #ccc;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
}


/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    background-color: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-black);
    box-shadow: 0 0 15px var(--white);
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--light-grey);
}

/* Chatbot */
#chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
}

#chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-black);
    border: 1px solid var(--white);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

#chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: var(--dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chat-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chat-header {
    background-color: var(--primary-black);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-body {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
}

.message {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex-grow: 1;
    padding: 0.5rem;
    border-radius: 4px;
}

.chat-input button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* Animations */
@keyframes glowPulse {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes streakMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 200%;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-animate.fade-up {
    transform: translateY(30px);
}

.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.pop-up {
    transform: scale(0.9);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Placeholder Images */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #1a1a1a, #222);
}

.placeholder-image::after {
    content: attr(data-text);
}

/* Responsive */
/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 4rem;
    }
}

/* Tablets (Portrait) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 5rem 0;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2.5px;
    }

    /* About grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 350px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Pricing */
    .pricing-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Projects carousel buttons */
    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}

/* Tablets and Large Phones */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid,
    .pricing-grid.three-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    /* Contact section */
    #contact {
        padding: 4rem 2rem;
        background-position: center;
    }

    .contact-wrapper h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Phones (Landscape and Portrait) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        height: calc(100vh - 70px);
        justify-content: center;
        align-items: center;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 0.5rem 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Loading screen */
    .loader-title {
        font-size: 2.8rem;
    }

    .progress-container {
        width: 250px;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    /* About section */
    .about-visual {
        height: 280px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Pricing */
    .pricing-grid,
    .pricing-grid.three-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.8rem;
    }

    .price {
        font-size: 2.2rem;
    }

    /* Projects carousel */
    .project-card {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .project-overlay {
        padding: 1.5rem;
    }

    /* Contact */
    #contact {
        padding: 3rem 1.5rem;
        min-height: 60vh;
    }

    .contact-wrapper {
        max-width: 100%;
    }

    .contact-wrapper h2 {
        font-size: 2rem;
        text-align: center;
    }

    .contact-info span {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Timeline */
    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-marker {
        left: 1px;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }

    /* Chatbot Mobile */
    #chatbot-widget {
        bottom: 20px;
        right: 20px;
    }

    #chat-toggle {
        width: 55px;
        height: 55px;
    }

    .chat-panel {
        width: calc(100vw - 40px);
        right: -20px;
        bottom: 70px;
        position: absolute;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Loading screen */
    .loader-title {
        font-size: 2.2rem;
    }

    .loader-subtitle {
        font-size: 0.75rem;
    }

    .progress-container {
        width: 200px;
    }

    /* Navigation */
    .logo {
        font-size: 1rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .hero-cta {
        max-width: 100%;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    /* About */
    .about-visual {
        height: 250px;
    }

    /* Services */
    .service-card {
        padding: 1.2rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    /* Projects */
    .project-card {
        height: 280px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-dots button {
        width: 10px;
        height: 10px;
    }

    .project-overlay {
        padding: 1rem;
    }

    .project-overlay h3 {
        font-size: 1.1rem;
    }

    .project-overlay p {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-wrapper h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-info span {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-left-width: 4px;
    }

    /* Timeline */
    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-grid {
        gap: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .footer-brand,
    .footer-nav,
    .footer-social,
    .footer-bottom {
        text-align: center;
    }

    .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .instagram-feed {
        justify-content: center;
    }

    /* Chatbot */
    #chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chat-panel {
        width: calc(100vw - 30px);
    }

    .section-padding {
        padding: 2.5rem 0;
    }
}

/* Extra Small Phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .loader-title {
        font-size: 2rem;
    }

    .contact-wrapper h2 {
        font-size: 1.6rem;
    }

    .project-card {
        height: 250px;
    }

    .about-visual {
        height: 220px;
    }
}