/* =========================================
   Digital Arts Studio - Main Stylesheet
   Color Scheme: Orange, Blue, White, Gold
   ========================================= */

/* Utility Classes */
.hidden {
    display: none !important;
}

/* CSS Variables */
:root {
    --primary-orange: #ff6b35;
    --primary-orange-dark: #e85a24;
    --primary-blue: #1e3a5f;
    --primary-blue-light: #2d5a87;
    --accent-gold: #d4a84b;
    --accent-gold-light: #f0c674;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 58, 95, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--primary-blue);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-3px);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(255, 107, 53, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 120px 24px 60px 24px;
    z-index: 3;
    position: relative;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-gold-light);
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* =========================================
   Section Headers
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================================
   About Section
   ========================================= */
.about-section {
    padding: 80px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

/* =========================================
   Services Preview
   ========================================= */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

.service-card.featured .service-link {
    color: var(--accent-gold-light);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   Featured Work / Portfolio
   ========================================= */
.featured-work {
    padding: 80px 0;
    background: var(--primary-blue);
}

.featured-work .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.featured-work .section-title {
    color: var(--white);
}

.featured-work .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.view-project {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .view-project {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

.portfolio-cta .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.portfolio-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.testimonial-author h5 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 70px 0;
    background: var(--gradient-primary);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* =========================================
   Social Banner
   ========================================= */
.social-banner {
    padding: 50px 0;
    background: var(--primary-blue);
    text-align: center;
}

.social-banner h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.social-link.fiverr {
    background: #1dbf73;
}

/* Fiverr custom icon */
.fiverr-icon {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.25 16.25v-10h-1.5v10h1.5zm-7.25-10c-0.69 0-1.25 0.56-1.25 1.25v1.25h-1.25v1.5h1.25v6h1.5v-6h2.5v-1.5h-2.5v-1.25c0-0.14 0.11-0.25 0.25-0.25h2.25v-1.5h-2.75v0.5zm10-2.25c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0 2.5c-0.28 0-0.5-0.22-0.5-0.5s0.22-0.5 0.5-0.5 0.5 0.22 0.5 0.5-0.22 0.5-0.5 0.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fiverr-icon-lg {
    width: 2rem;
    height: 2rem;
}

/* Dark version of Fiverr icon for footer list items */
.footer .fiverr-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231dbf73'%3E%3Cpath d='M16.25 16.25v-10h-1.5v10h1.5zm-7.25-10c-0.69 0-1.25 0.56-1.25 1.25v1.25h-1.25v1.5h1.25v6h1.5v-6h2.5v-1.5h-2.5v-1.25c0-0.14 0.11-0.25 0.25-0.25h2.25v-1.5h-2.75v0.5zm10-2.25c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0 2.5c-0.28 0-0.5-0.22-0.5-0.5s0.22-0.5 0.5-0.5 0.5 0.22 0.5 0.5-0.22 0.5-0.5 0.5z'/%3E%3C/svg%3E");
}

.social-link.linktree {
    background: #43e660;
}

.social-link.email {
    background: var(--primary-orange);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: 1.3rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary-orange);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: var(--primary-orange);
    width: 20px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* =========================================
   Chatbot
   ========================================= */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5);
    position: relative;
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--primary-blue);
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-header h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.online-status {
    font-size: 0.75rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-message.bot .message-avatar {
    background: var(--primary-blue);
    color: var(--white);
}

.chat-message.user .message-avatar {
    background: var(--primary-orange);
    color: var(--white);
}

.message-content {
    background: var(--off-white);
    padding: 12px 16px;
    border-radius: 18px;
}

.chat-message.bot .message-content {
    border-bottom-left-radius: 5px;
}

.chat-message.user .message-content {
    background: var(--primary-orange);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.message-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.quick-reply {
    background: var(--white);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.quick-reply:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.chatbot-input {
    padding: 12px 16px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 8px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--light-gray);
    border-radius: 25px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--primary-orange);
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

/* =========================================
   Service Detail Styles
   ========================================= */
.services-section {
    padding: 80px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content .service-icon {
    margin: 0 0 20px;
    width: 70px;
    height: 70px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--primary-orange);
}

.service-detail-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.service-detail-image.order-first {
    order: -1;
}

.process-section {
    padding: 80px 0;
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 35px 18px;
}

.process-step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
}

.process-step h4 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image.order-first {
        order: 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Page Headers (for inner pages)
   ========================================= */
.page-header {
    background: var(--gradient-secondary);
    padding: 130px 0 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--primary-orange);
}

/* =========================================
   Forms
   ========================================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* =========================================
   Pricing Cards
   ========================================= */
.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.pricing-card.popular .pricing-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-features {
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-orange);
}

/* =========================================
   Contact Page
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-card > p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--white);
    opacity: 0.8;
}

.contact-info-item a:hover {
    opacity: 1;
    color: var(--accent-gold-light);
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    margin-bottom: 20px;
}

.contact-social .social-icons {
    display: flex;
    gap: 15px;
}

.contact-social .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.contact-social .social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

/* =========================================
   Portfolio Grid
   ========================================= */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95), rgba(30, 58, 95, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
}

.portfolio-card-overlay h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.portfolio-card-overlay p {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.portfolio-links {
    display: flex;
    gap: 10px;
}

.portfolio-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.portfolio-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

/* =========================================
   Order Form
   ========================================= */
.order-section {
    padding: 80px 0;
    background: var(--off-white);
}

.order-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.order-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.package-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.package-option {
    position: relative;
}

.package-option input {
    position: absolute;
    opacity: 0;
}

.package-option label {
    display: block;
    padding: 18px;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.package-option input:checked + label {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.package-option label h5 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.package-option label span {
    color: var(--primary-orange);
    font-weight: 700;
}

/* =========================================
   Responsive Styles
   ========================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .portfolio-preview,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-preview,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .chatbot-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    .form-row,
    .package-select {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* =========================================
   Portfolio & Pricing Page Specific Styles
   ========================================= */

/* Portfolio Section */
.portfolio-section,
.pricing-section {
    padding: 80px 0;
}

/* Personal Projects Section */
.personal-projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1f2d 100%);
}

.personal-projects-section .section-tag {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

.personal-projects-section .section-title,
.personal-projects-section .section-subtitle {
    color: var(--white);
}

.personal-projects-section .section-subtitle {
    opacity: 0.9;
}

.portfolio-card.featured-project {
    position: relative;
}

.portfolio-card.featured-project::before {
    content: '★ Featured';
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inspiration-section {
    padding: 80px 0;
    background: var(--off-white);
}

.stats-section {
    padding: 70px 0;
    background: var(--gradient-secondary);
}

.stats-section .hero-stats {
    justify-content: space-around;
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Button Full Width */
.pricing-card .btn-full {
    width: 100%;
    justify-content: center;
}

/* Add-ons Section */
.addons-section {
    background: var(--off-white);
    padding: 40px;
    border-radius: 25px;
    margin-top: 50px;
}

.addons-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 35px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-section {
        padding: 30px;
    }
}

.addon-card {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.addon-card i {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.addon-card h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.addon-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Order Form Addons Grid */
.addons-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .addons-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.addon-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.addon-checkbox-label:hover {
    border-color: var(--primary-orange);
}

.addon-checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Alternative Order Section */
.alt-order-section {
    text-align: center;
    margin-top: 50px;
}

.alt-order-section h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.alt-order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-light);
}

/* Submit Button Full Width */
.btn-submit-full {
    width: 100%;
    justify-content: center;
    padding: 18px;
}

/* Form Submit Note */
.form-submit-note {
    text-align: center;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Reference Textarea */
.textarea-short {
    min-height: 100px;
}

/* =========================================
   Contact Page Specific Styles
   ========================================= */

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

/* Newsletter Checkbox Label */
.newsletter-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.newsletter-label input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.newsletter-label span {
    font-weight: 400;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 70px 0;
    background: var(--off-white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Contact Card */
.quick-contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.quick-contact-icon.fiverr {
    background: #1dbf73;
}

.quick-contact-icon.linktree {
    background: #43e660;
}

.quick-contact-icon.email {
    background: var(--primary-orange);
}

.quick-contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.quick-contact-card h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.quick-contact-card p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.quick-contact-link {
    font-weight: 600;
}

.quick-contact-link.fiverr {
    color: #1dbf73;
}

.quick-contact-link.linktree {
    color: #43e660;
}

.quick-contact-link.email {
    color: var(--primary-orange);
}

/* Response Time Section */
.response-time-section {
    padding: 50px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.response-time-section i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.response-time-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.response-time-section p {
    opacity: 0.9;
}

/* CTA Blue Background */
.cta-section-blue {
    background: var(--primary-blue);
}
/* =========================================
   Contact Page Specific Styles
   ========================================= */
.contact-section {
    padding: 100px 0;
}

.contact-info-card {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: 25px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-card > p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.contact-icon.fiverr-contact-icon {
    background: rgba(29, 191, 115, 0.15);
}

.contact-icon.fiverr-contact-icon .fiverr-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231dbf73'%3E%3Cpath d='M16.25 16.25v-10h-1.5v10h1.5zm-7.25-10c-0.69 0-1.25 0.56-1.25 1.25v1.25h-1.25v1.5h1.25v6h1.5v-6h2.5v-1.5h-2.5v-1.25c0-0.14 0.11-0.25 0.25-0.25h2.25v-1.5h-2.75v0.5zm10-2.25c-1.1 0-2 0.9-2 2s0.9 2 2 2 2-0.9 2-2-0.9-2-2-2zm0 2.5c-0.28 0-0.5-0.22-0.5-0.5s0.22-0.5 0.5-0.5 0.5 0.22 0.5 0.5-0.22 0.5-0.5 0.5z'/%3E%3C/svg%3E");
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    opacity: 0.85;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-info-item a {
    color: var(--white);
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-orange);
}

.contact-social h4 {
    margin-bottom: 15px;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4 i {
    color: var(--primary-orange);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 400;
}

.checkbox-label:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark + span {
    color: var(--primary-orange);
    font-weight: 500;
}

.newsletter-checkbox {
    margin-top: 20px;
    background: var(--off-white);
}

/* Required field indicator */
.required {
    color: #ef4444;
}

/* Form Submit Section */
.form-submit {
    margin-top: 30px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #10b981;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 3rem;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.form-success .response-time {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 25px;
}

.form-success .response-time i {
    margin-right: 8px;
}

/* Form Field Error State */
input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 70px 0;
    background: var(--off-white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quick-contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.quick-contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.fiverr-bg { background: #1dbf73; }
.linktree-bg { background: #43e660; }
.email-bg { background: var(--primary-orange); }

.quick-contact-card h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.quick-contact-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.quick-contact-link {
    font-weight: 600;
}

.fiverr-color { color: #1dbf73; }
.linktree-color { color: #43e660; }
.email-color { color: var(--primary-orange); }

/* Response Time Banner */
.response-time-banner {
    padding: 50px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.response-time-banner i {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.response-time-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.response-time-banner p {
    opacity: 0.9;
}

/* CTA Blue */
.cta-blue {
    background: var(--primary-blue);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
}