/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

:root {
    --primary-color: #8B3A3A;
    --primary-dark: #6B2C2C;
    --light-pink: #F5E6E0;
    --light-pink-2: #FCD5E1;
    --dark-text: #2C2C2C;
    --gray-text: #666666;
    --light-gray: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Navbar Styling */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    font-size: 14px;
    margin: 0 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

.navbar-icons {
    display: flex;
    gap: 20px;
    margin-left: 30px;
}

.nav-icon {
    color: var(--dark-text);
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 60px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.carousel-inner {
    border-radius: 10px;
}

.carousel-item {
    padding: 40px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-order {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 58, 58, 0.3);
    color: var(--white);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-bg {
    width: 500px;
    height: 500px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(139, 58, 58, 0.25);
}

.embroidery-img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

/* Carousel Indicators */
.custom-indicators {
    position: absolute;
    bottom: -60px;
    left: 0;
    display: flex;
    gap: 30px;
    list-style: none;
}

.custom-indicators li {
    font-size: 20px;
    font-weight: 700;
    color: #CCCCCC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-indicators li.active {
    color: var(--primary-color);
    font-size: 24px;
}

/* Footer Section */
.footer-section {
    background-color: var(--light-gray);
    padding: 50px 0;
    border-top: 2px solid var(--light-pink-2);
    margin-top: 80px;
}

.footer-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section p {
    color: var(--gray-text);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(139, 58, 58, 0.2);
}

.footer-section hr {
    border-color: var(--border-color);
    margin: 30px 0;
}

.footer-section .text-center {
    color: var(--gray-text);
    font-size: 12px;
}

.footer-section a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-dark);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.circle-logo {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(139, 58, 58, 0.25);
}

.logo-img {
    max-width: 85%;
    height: auto;
    object-fit: contain;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 58, 58, 0.3);
    color: var(--white);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--light-pink);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 58, 58, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
    background-color: var(--primary-color);
    color: var(--white);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.btn-add-cart {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-add-cart:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.see-more-container {
    text-align: center;
}

.btn-see-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 58, 58, 0.3);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B2C2C 100%);
    padding: 80px 0;
    color: var(--white);
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.contact-form {
    margin-bottom: 40px;
}

.contact-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 0;
    margin-bottom: 25px;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-control:focus {
    background-color: transparent;
    border-bottom-color: var(--white);
    box-shadow: none;
    color: var(--white);
}

.btn-send {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-send:hover {
    background-color: var(--light-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
    padding: 40px 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--white);
}

.contact-info-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* About Page Section */
.about-page-section {
    padding: 100px 0;
    background-color: var(--light-pink);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-page-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-bg-large {
    width: 500px;
    height: 500px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(139, 58, 58, 0.25);
}

.circle-bg-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-large {
    max-width: 85%;
    height: auto;
    object-fit: contain;
}

.brand-tagline {
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    letter-spacing: 2px;
}

.about-page-content {
    padding-left: 50px;
}

.about-page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-page-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 20px;
}

/* Footer About Page */
.footer-about-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B2C2C 100%);
    padding: 60px 0 40px;
    color: var(--white);
}

.footer-col {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-brand-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    align-items: center;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    padding-left: 10px;
    transition: color 0.3s ease;
}

.newsletter-btn:hover {
    color: var(--light-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.footer-pagination {
    display: flex;
    gap: 15px;
}

.pagination-prev,
.pagination-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.copyright-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    margin: 0;
}

/* Products Page Header */
.products-page-header {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--light-pink-2);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 16px;
    color: var(--gray-text);
}

/* Products Page Section */
.products-page-section {
    padding: 80px 0;
    background-color: var(--light-pink);
    min-height: 600px;
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-page-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-page-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(139, 58, 58, 0.2);
}

.product-page-header {
    background-color: var(--primary-color);
    padding: 15px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-label {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-page-image {
    width: 100%;
    height: 280px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-page-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.product-page-info {
    padding: 25px;
    background-color: var(--primary-color);
    color: var(--white);
}

.product-page-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: capitalize;
    line-height: 1.4;
}

.product-page-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.btn-product-cart {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    border: 2px solid var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-product-cart:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-product-cart i {
    margin-right: 8px;
}

/* Kostum Page Header */
.kostum-page-header {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 40px 0;
    text-align: center;
    border-bottom: 2px solid var(--light-pink-2);
}

.kostum-page-header .page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Kostum Section */
.kostum-section {
    padding: 80px 0;
    background-color: var(--light-pink);
    min-height: 600px;
}

.kostum-content {
    text-align: center;
    margin-bottom: 60px;
}

.kostum-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kostum-desc {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.kostum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.kostum-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kostum-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(139, 58, 58, 0.2);
}

.kostum-image {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kostum-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.kostum-info {
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.kostum-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
}

.kostum-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.btn-kostum-order {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    border: 2px solid var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-kostum-order:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-kostum-order i {
    margin-right: 10px;
}

/* Blog Page Header */
.blog-page-header {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--light-pink-2);
}

.blog-page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-page-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--light-pink);
    min-height: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: transparent;
}

.blog-card:nth-child(even) {
    grid-template-columns: 1fr 1fr 1fr;
    direction: rtl;
}

.blog-card:nth-child(even) > * {
    direction: ltr;
}

.blog-image-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content-left {
    background-color: var(--primary-color);
    padding: 40px 30px;
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

.blog-content-right {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-full-content {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 15px;
}

.blog-full-content:last-child {
    margin-bottom: 0;
}

/* Contact Page Header */
.contact-page-header {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--light-pink-2);
}

.contact-page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-page-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    margin: 0;
}

/* Contact Page Section */
.contact-page-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B2C2C 100%);
    padding: 80px 0;
    color: var(--white);
    min-height: 600px;
}

.contact-page-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contact Form */
.contact-page-form {
    margin-bottom: 40px;
}

.contact-input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 0;
    margin-bottom: 25px;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-input:focus {
    background-color: transparent;
    border-bottom-color: var(--white);
    box-shadow: none;
    color: var(--white);
}

.btn-contact-send {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-contact-send:hover {
    background-color: var(--light-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-page-info {
    padding: 40px 0;
}

.contact-page-info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 28px;
    color: var(--white);
    min-width: 50px;
    text-align: center;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Social Media */
.contact-page-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-page-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .custom-indicators {
        bottom: -50px;
        gap: 20px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 13px;
    }

    .navbar-icons {
        margin-left: 0;
        gap: 15px;
    }

    .footer-section {
        padding: 40px 0;
    }

    .social-icons {
        justify-content: center;
    }

    .circle-logo {
        width: 280px;
        height: 280px;
    }

    .about-title {
        font-size: 24px;
    }

    .contact-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info {
        padding: 20px 0;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .about-page-section {
        padding: 60px 0;
    }

    .circle-bg-large {
        width: 350px;
        height: 350px;
    }

    .about-page-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-page-title {
        font-size: 28px;
    }

    .about-page-text {
        font-size: 13px;
    }

    .footer-about-section {
        padding: 40px 0 30px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .copyright-text {
        text-align: center;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .products-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .product-page-image {
        height: 200px;
    }

    .products-page-section {
        padding: 60px 0;
    }

    .kostum-page-header .page-title {
        font-size: 24px;
    }

    .kostum-title {
        font-size: 32px;
    }

    .kostum-desc {
        font-size: 14px;
    }

    .kostum-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .kostum-image {
        height: 250px;
    }

    .kostum-section {
        padding: 60px 0;
    }

    .blog-page-title {
        font-size: 36px;
    }

    .blog-page-subtitle {
        font-size: 14px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        gap: 40px;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image-wrapper {
        min-height: 200px;
    }

    .blog-content-left {
        padding: 30px 20px;
    }

    .blog-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .blog-description {
        font-size: 13px;
    }

    .blog-content-right {
        padding: 20px;
    }

    .blog-full-content {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 12px;
    }

    .btn-order {
        padding: 10px 25px;
        font-size: 11px;
    }

    .circle-bg {
        width: 200px;
        height: 200px;
    }

    .custom-indicators {
        gap: 15px;
    }

    .custom-indicators li {
        font-size: 14px;
    }

    .about-page-title {
        font-size: 22px;
    }

    .circle-bg-large {
        width: 250px;
        height: 250px;
    }

    .about-page-text {
        font-size: 12px;
    }

    .footer-title {
        font-size: 12px;
    }

    .footer-brand-text,
    .footer-subtitle {
        font-size: 11px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .products-page-header {
        padding: 40px 0;
    }

    .products-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-page-image {
        height: 150px;
    }

    .product-page-info {
        padding: 15px;
    }

    .product-page-name {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product-page-price {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .btn-product-cart {
        padding: 10px;
        font-size: 11px;
    }

    .kostum-page-header .page-title {
        font-size: 20px;
    }

    .kostum-title {
        font-size: 24px;
    }

    .kostum-desc {
        font-size: 13px;
    }

    .kostum-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .kostum-image {
        height: 200px;
    }

    .kostum-info {
        padding: 20px;
    }

    .kostum-name {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .kostum-price {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .btn-kostum-order {
        padding: 12px;
        font-size: 12px;
    }

    .blog-page-title {
        font-size: 28px;
    }

    .blog-page-subtitle {
        font-size: 13px;
    }

    .blog-section {
        padding: 40px 0;
    }

    .blog-grid {
        gap: 30px;
    }

    .blog-image-wrapper {
        min-height: 150px;
    }

    .blog-content-left {
        padding: 20px 15px;
    }

    .blog-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-description {
        font-size: 12px;
    }

    .blog-content-right {
        padding: 15px;
    }

    .blog-full-content {
        font-size: 12px;
        margin-bottom: 10px;
    }
}