/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 80px 0;
}

/* ===== TYPOGRAPHY & REUSABLE ===== */
.gradient-text {
    background: linear-gradient(135deg, #c7203c, #f09819);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c7203c;
    background: rgba(199, 32, 60, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0a0a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #5a5a72;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    text-decoration: none;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #c7203c;
    font-size: 1.8rem;
}

.logo span .accent {
    color: #c7203c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #2d2d44;
    transition: 0.2s;
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: #c7203c;
}

.btn-quote-nav {
    background: #c7203c;
    color: white !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600 !important;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a1a2e;
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 140px;
    background: linear-gradient(145deg, #fef9f5 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    background: rgba(199, 32, 60, 0.12);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c7203c;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #4a4a60;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary, .btn-outline {
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-primary {
    background: #c7203c;
    color: white;
    box-shadow: 0 8px 20px rgba(199, 32, 60, 0.25);
}

.btn-primary:hover {
    background: #a81a32;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #c7203c;
    color: #c7203c;
}

.btn-outline:hover {
    background: #c7203c;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats div span {
    font-weight: 800;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.hero-visual {
    position: relative;
    min-height: 420px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 60px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

.card-1 { top: 20%; left: 0; }
.card-2 { bottom: 20%; right: 0; background: #1a1a2e; color: white; }
.card-3 { top: 60%; left: 20%; background: #f09819; color: white; }
.hero-image-bg {
    background: url('https://placehold.co/600x500/eeeeee/cccccc?text=Print+Mockup') center/cover no-repeat;
    width: 100%;
    height: 380px;
    border-radius: 32px;
    opacity: 0.7;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 28px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c7203c20;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2.8rem;
    color: #c7203c;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

/* ===== PORTFOLIO ===== */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background: #c7203c;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    background: #f9f9fc;
    transition: 0.2s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.portfolio-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: 0.3s;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.03);
}

.portfolio-info {
    padding: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: #fafaff;
    border-radius: 32px;
    text-align: center;
}

.testimonial-card i {
    font-size: 48px;
    color: #c7203c;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: white;
    border: 1px solid #ddd;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.slider-btn:hover {
    background: #c7203c;
    color: white;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: #c7203c;
    width: 28px;
    border-radius: 12px;
}

/* ===== CONTACT ===== */
.contact {
    background: #0a0a1a;
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-details {
    list-style: none;
    margin: 30px 0;
}

.contact-details li {
    margin: 16px 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-details i {
    color: #f09819;
}

.social-links a {
    background: #2a2a3a;
    display: inline-flex;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.2s;
}

.contact-form {
    background: white;
    padding: 36px;
    border-radius: 32px;
    color: #1a1a2e;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: inherit;
}

.submit-btn {
    border: none;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

.form-feedback {
    margin-top: 12px;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f0f1a;
    color: #ccc;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo i {
    font-size: 2rem;
    color: #c7203c;
}

.footer-links h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    line-height: 2;
}

.newsletter-group {
    display: flex;
    margin-top: 12px;
}

.newsletter-group input {
    flex: 1;
    border-radius: 40px 0 0 40px;
    margin-bottom: 0;
}

.newsletter-group button {
    background: #c7203c;
    border: none;
    padding: 0 18px;
    border-radius: 0 40px 40px 0;
    color: white;
    cursor: pointer;
}

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2a2a3a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid, .contact-wrapper, .footer-content {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .floating-card {
        display: none;
    }
}

.fade-up {
    animation: fadeUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.team-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.team-role {
    color: #c7203c;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.team-bio {
    color: #5a5a72;
    line-height: 1.5;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* For SVG logos */
.logo svg {
    height: 45px;
    width: auto;
}

/* Features Grid for Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 24px;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.feature i {
    font-size: 2.5rem;
    color: #c7203c;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature p {
    color: #5a5a72;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: #fef9f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.team-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.team-role {
    color: #c7203c;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.team-bio {
    color: #5a5a72;
    line-height: 1.5;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #64748b;
}

/* Light variant for section tag in contact */
.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: #f09819;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-custom {
    display: flex;
    align-items: center;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.logo .accent {
    color: #c7203c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .logo span {
        font-size: 1rem;
    }
}