/* ===== KALMAZ - Digital Printing Solutions ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e88e5;
    --dark-blue: #1565c0;
    --light-blue: #e3f2fd;
    --accent-yellow: #ffc107;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-bg: #f5f5f5;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--light-blue);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
    font-size: 14px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-icon .shape {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.logo-icon .shape1 {
    background: #ff6b6b;
    top: 0;
    left: 0;
}

.logo-icon .shape2 {
    background: #4ecdc4;
    top: 0;
    right: 0;
}

.logo-icon .shape3 {
    background: #ffe66d;
    bottom: 0;
    left: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar form {
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 40px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: var(--dark-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-actions a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: var(--primary-blue);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-blue);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: white;
    padding: 40px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--accent-yellow);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    color: white;
}

.service-tag:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-height: 90%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* ===== COLLECTIONS SECTION ===== */
.collections {
    padding: 80px 0;
    background: var(--white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.collection-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.collection-item:hover {
    transform: translateY(-10px);
}

.collection-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collection-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-item:hover .collection-circle img {
    transform: scale(1.1);
}

.collection-item h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== FLAGSHIP PRODUCTS ===== */
.flagship {
    padding: 80px 0;
    background: var(--gray-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-price {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-large {
    grid-row: span 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.service-medium {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.service-overlay h3 {
    font-size: 24px;
    font-weight: 600;
}

/* ===== DIGITAL PRINTING ===== */
.digital-printing {
    padding: 80px 0;
    background: var(--gray-bg);
}

.digital-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.digital-showcase {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.digital-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digital-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.digital-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.digital-product {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    cursor: pointer;
}

.digital-product:hover {
    transform: translateY(-5px);
}

.digital-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.digital-product-info {
    padding: 15px;
}

.digital-product-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.digital-product-info p {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== GOODIES SECTION ===== */
.goodies {
    padding: 80px 0;
    background: var(--white);
}

.goodies-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.goodies-showcase {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.goodies-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goodies-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.goodies-badge h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.goodies-badge a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram {
    padding: 60px 0;
    background: var(--gray-bg);
}

.instagram-title {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-title h2 {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instagram-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.instagram-item {
    min-width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 60px 0;
    background: var(--white);
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.reviews-header h3 {
    font-size: 20px;
}

.reviews-header .stars {
    color: var(--accent-yellow);
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.review-card {
    min-width: 350px;
    background: var(--gray-bg);
    padding: 25px;
    border-radius: 12px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-light);
}

.review-stars {
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== VALUE PROPOSITION ===== */
.value-prop {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.value-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.value-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.value-list i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ===== PRODUCT DETAIL SECTION ===== */
.product-detail {
    padding: 80px 0;
    background: var(--white);
}

.detail-quote {
    text-align: center;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 50px;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.detail-gallery {
    display: flex;
    gap: 20px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--primary-blue);
}

.gallery-main {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.detail-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.detail-price {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 30px;
}

.detail-btn {
    background: var(--primary-blue);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.detail-btn:hover {
    background: var(--dark-blue);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 2;
    font-size: 14px;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.newsletter button {
    padding: 12px 25px;
    background: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.newsletter button:hover {
    background: #0d47a1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-blue);
    color: white;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .service-large {
        grid-row: span 1;
        height: 400px;
    }

    .digital-grid,
    .goodies-grid,
    .detail-content,
    .value-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .search-bar {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-circle {
        width: 140px;
        height: 140px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .collection-circle {
        width: 120px;
        height: 120px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-circle {
        width: 100px;
        height: 100px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .service-overlay h3 {
        font-size: 18px;
    }
}