/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --font-playfair: "Montserrat", sans-serif;
    --font-worksans: "Montserrat", sans-serif;
}

body {
    font-family: var(--font-playfair);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

body.dark-mode {
    --primary-color: #ffffff;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --white: #1a1a1a;
    --secondary-color: #2a2a2a;
    background: #1a1a1a;
    color: var(--text-color);
}

/* Global Anchor Styles - Only hover effects */
a:not([class]):hover {
    color: var(--accent-color);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.spinner-border {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.text-center { text-align: center; }
.text-light { color: rgba(255, 255, 255, 0.9); }
.mt-3 { margin-top: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Dark/Light Mode Toggle */
.tt-style-switch {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: block;
}

.theme-segmented-control {
    display: flex;
    flex-direction: column;
    background: #2a2a2a;
    border-radius: 10px;
    padding: 3px;
    gap: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 30px;
}

.theme-option {
    position: relative;
    background: transparent;
    border: none;
    padding: 8px 4px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 7px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.theme-option.active {
    background: #ffffff;
}

.theme-text {
    writing-mode: sideways-lr;
    text-orientation: upright;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition);
    letter-spacing: 1px;
    line-height: 1;
    display: block;
}

.theme-option.active .theme-text {
    color: #1a1a1a;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-brand {
    flex-shrink: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.main-menu {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    padding: 0.5rem 1.5rem;
    display: block;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 3rem);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section with Slider */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('./images/banner-bg3.jpg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('./images/banner-bg3.jpg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-subtitle strong {
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Hero Form Wrapper */
.hero-form-wrapper {
    z-index: 2;
}

.enquery-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: left;
}

.hero-form .form-group {
    margin-bottom: 1rem;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form input[type="number"],
.hero-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    font-family: var(--font-playfair);
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

body.dark-mode .hero-form input[type="text"],
body.dark-mode .hero-form input[type="email"],
body.dark-mode .hero-form input[type="tel"],
body.dark-mode .hero-form input[type="number"],
body.dark-mode .hero-form textarea {
    background: var(--white);
    color: var(--text-color);
    border-color: #999;
}

.hero-form input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.hero-form input[type="number"]::-webkit-outer-spin-button,
.hero-form input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.hero-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.primary-btn1 {
    width: 100%;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-playfair);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.primary-btn1:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .primary-btn1 {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

body.dark-mode .primary-btn1:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pagination */
.pagination-area {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.swiper-pagination1 {
    display: flex;
    gap: 10px;
    justify-content: center;
}

section {
    margin-bottom: 120px;

}

/* Inv
estment Section */
.investment-section {
    background: var(--white);
    padding: 5rem 0;
}

.about-wrapper {
    width: 100%;
}

.about-row {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 4rem;
    align-items: center;
}

.about-img-wrapper {
    width: 100%;
}

.about-img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-content-wrapper {
    width: 100%;
}

.about-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.about-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list-and-btn-area {
    margin-top: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 1rem;
    padding: .5rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li svg {
    flex-shrink: 0;
    stroke: var(--accent-color);
    width: 20px;
    height: 20px;
}

/* Sections */

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Section */
.why-section {
    background: var(--white);
}

/* Why Banner Section */
.why-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.why-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.why-banner-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    margin-bottom: 150px;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

/* Why Content Section */
.why-content-section {
    background: var(--white);
    padding: 0;
    margin-top: -120px;
    position: relative;
    z-index: 1;
}

.why-content-wrapper {
    width: 100%;
}

.why-content-row {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
    align-items: flex-start;
    padding: 2rem 0 4rem;
}

.why-content-img-wrapper {
    width: 100%;
    position: relative;
    z-index: 3;
    margin-top: -120px; /* 20% of 600px image height = 120px overlap into banner */
}

.why-content-img {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-content-text-wrapper {
    width: 100%;
    background: #faf9f6;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

body.dark-mode .why-content-text-wrapper {
    background: #2a2a2a;
}

.why-content-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-features-list {
    margin: 2rem 0;
}

.why-features-list .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-features-list .feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.why-features-list .feature-list li svg {
    flex-shrink: 0;
    color: var(--accent-color);
    width: 16px;
    height: 16px;
}

.why-cta-button {
    margin-top: 2rem;
}

/* Why CTA button uses default .btn-primary style */

/* Legacy styles for other sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

body.dark-mode .benefit-item {
    border-color: #999;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

body.dark-mode .benefit-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.benefit-item h3 {
    color: var(--primary-color);
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

/* Collections Section */
.collections-section {
    background: var(--white);
    padding-top: 2rem;
}
p.collections-description{
    
    text-align: center;
}

.collections-description {
    font-size: 1.1rem;
    text-align: left;
    color: var(--text-light);
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    line-height: 1.8;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-image {
    width: 100%;
    margin-bottom: 0;
    transition: var(--transition);
    position: relative;
    display: block;
    min-height: 200px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: contain;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    z-index: 5;
    transition: left 0.6s ease;
    pointer-events: none;
}

.artist-card:hover .artist-image {
    transform: scale(1.02);
}

.artist-card:hover .artist-image img {
    opacity: 0.95;
}

.artist-card:hover .artist-image::before {
    left: 100%;
    transition: left 0.6s ease;
}

.artist-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000000;
    padding: 0.75rem 1.25rem;
    display: block !important;
    z-index: 100;
    max-width: calc(100% - 2.5rem);
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

.artist-card.fade-in-up .artist-name-overlay,
.artist-card.fade-in-up.visible .artist-name-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

.artist-name-overlay h3 {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    text-shadow: none;
    line-height: 1.2;
    white-space: nowrap;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.artist-card h3 {
    display: none;
}

/* Why Buy Art Section */
.why-buy-section {
    background: #faf9f6;
}

body.dark-mode .why-buy-section {
    background: #2a2a2a;
}

.why-buy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-buy-image-wrapper {
    width: 100%;
}

.why-buy-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.why-buy-content-wrapper {
    width: 100%;
}

.why-buy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.why-buy-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.why-buy-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0;
}

.why-buy-point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

body.dark-mode .why-buy-point-icon {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.why-buy-point-content {
    flex: 1;
}

.why-buy-point-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.why-buy-point-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-buy-cta {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.why-buy-cta .btn-primary {
    display: inline-block;
    width: auto;
    padding: 0.875rem 1.75rem;
}

/* Artists Section */
.artists-section {
    background: var(--white);
}

/* Artists grid uses the same styles as collections grid (.artists-grid) */


/* How It Works Section */
.how-it-works-section {
    background: #faf9f6;
}

body.dark-mode .how-it-works-section {
    background: #2a2a2a;
}

.how-it-works-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-it-works-image-wrapper {
    width: 100%;
}

.how-it-works-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.how-it-works-content-wrapper {
    width: 100%;
}

.how-it-works-carousel {
    position: relative;
    min-height: 300px;
}

.how-it-works-cards-container {
    position: relative;
    height: 100%;
}

.how-it-works-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

body.dark-mode .how-it-works-card {
    background: #2a2a2a;
    border-color: #999;
}

.how-it-works-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.how-it-works-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.how-it-works-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.how-it-works-indicators {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.how-it-works-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.how-it-works-indicators .indicator.active {
    background: var(--primary-color);
}

body.dark-mode .how-it-works-indicators .indicator {
    background: #666;
}

body.dark-mode .how-it-works-indicators .indicator.active {
    background: var(--primary-color);
}

/* Final CTA Section */
.final-cta-section {
    background: #faf9f6;
}

body.dark-mode .final-cta-section {
    background: #2a2a2a;
}

.final-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-content-wrapper {
    width: 100%;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.final-cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.final-cta-button {
    margin-top: 1.5rem;
}

.final-cta-image-wrapper {
    width: 100%;
}

.final-cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Page Hero (for About and Contact) */
.page-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: #faf9f6;
    text-align: center;
}

.page-hero {
    background: #faf9f6;
}

body.dark-mode .page-hero {
    background: #2a2a2a;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 5rem 0;
    background: var(--white);
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
    border: 1px solid transparent;
}

body.dark-mode .service-item {
    border-color: #999;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
}

.gallery-info {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid transparent;
}

body.dark-mode .gallery-info {
    border-color: #999;
}

.gallery-info p {
    margin-bottom: 0.5rem;
}

.gallery-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.gallery-info a:hover {
    color: var(--accent-color);
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 1rem;
    background: var(--secondary-color);
    margin-bottom: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
}

.cta-section {
    background: var(--secondary-color);
    padding: 5rem 0;
    text-align: center;
}

/* Contact Content */
.contact-content {
    padding: 5rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-features {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

body.dark-mode .contact-features {
    border-color: #999;
}

.contact-features h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-features ul {
    list-style: none;
}

.contact-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

body.dark-mode .contact-form-wrapper {
    border-color: #999;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: var(--white);
    color: var(--text-color);
    border-color: #999;
}

.form-group input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Combobox Styles */
.form-group {
    position: relative;
}

.combobox-input {
    cursor: pointer;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid #ddd;
}

body.dark-mode .combobox-input {
    background: var(--white);
    color: var(--text-color);
    border-color: #999;
}

.combobox-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode .combobox-options {
    background: var(--white);
    border: 1px solid #999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.combobox-options.active {
    display: block;
}

.combobox-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

body.dark-mode .combobox-option {
    color: #1a1a1a;
    border-bottom-color: #e0e0e0;
}

.combobox-option:last-child {
    border-bottom: none;
}

.combobox-option:hover {
    background: #f5f5f5;
    color: var(--accent-color);
}

body.dark-mode .combobox-option:hover {
    background: #e8e8e8;
    color: var(--accent-color);
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.country-code-selector {
    position: relative;
    flex-shrink: 0;
}

.country-code-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    height: 100%;
    min-height: 48px;
    min-width: 130px;
    font-family: inherit;
}

body.dark-mode .country-code-btn {
    border-color: #999;
    background: var(--white);
    color: #1a1a1a;
}

.country-code-btn:hover {
    background: #f8f8f8;
    border-color: #bbb;
}

body.dark-mode .country-code-btn:hover {
    background: #f5f5f5;
    border-color: #888;
}

.country-code-btn.active {
    border-color: var(--accent-color);
    background: #f8f8f8;
    z-index: 1;
}

.country-flag {
    font-size: 1.3rem;
    line-height: 1;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.country-code {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.dropdown-arrow {
    font-size: 0.6rem;
    color: #666;
    transition: transform 0.2s ease;
    margin-left: auto;
    display: inline-block;
    line-height: 1;
}

.country-code-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-code-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1001;
    display: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 260px;
    width: max-content;
    margin-top: 2px;
}

body.dark-mode .country-code-dropdown {
    border-color: #999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    background: var(--white);
}

.country-code-dropdown.active {
    display: block;
}

.country-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

body.dark-mode .country-option {
    color: #ffffff;
    border-bottom-color: #e5e5e5;
}

body.dark-mode .country-option-text {
    color: #ffffff;
}

body.dark-mode .country-option-code {
    color: #cccccc;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background: #f5f5f5;
}

.country-option.selected {
    background: #f0f0f0;
    font-weight: 500;
}

body.dark-mode .country-option:hover {
    background: #e8e8e8;
}

body.dark-mode .country-option.selected {
    background: #e0e0e0;
}

.country-option .country-flag {
    font-size: 1.2rem;
    width: 28px;
    flex-shrink: 0;
}

.country-option-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-option-code {
    color: #666;
    font-size: 0.9rem;
    margin-left: auto;
}

.phone-number-input {
    flex: 1;
    border-radius: 0 5px 5px 0;
    border-left: none;
    padding-left: 1rem;
    border: 1px solid #ddd;
}

body.dark-mode .phone-number-input {
    border-color: #999;
}

.phone-number-input:focus {
    border-left: 1px solid var(--accent-color);
    border-color: var(--accent-color);
    outline: none;
}

.phone-input-wrapper:focus-within .country-code-btn {
    border-color: var(--accent-color);
}

/* Hero form specific styling */
.hero-form .phone-input-wrapper .country-code-btn {
    border-radius: 0;
    border-right: none;
    min-width: 110px;
    padding: 0.875rem 0.75rem;
}

.hero-form .phone-input-wrapper .phone-number-input {
    border-radius: 0;
    border-left: none;
}

.hero-form .phone-input-wrapper .country-code-btn,
.hero-form .phone-input-wrapper .phone-number-input {
    border: 1px solid #ddd;
}

body.dark-mode .hero-form .phone-input-wrapper .country-code-btn,
body.dark-mode .hero-form .phone-input-wrapper .phone-number-input {
    border-color: #999;
}

/* Scrollbar styling for dropdown */
.country-code-dropdown::-webkit-scrollbar {
    width: 8px;
}

.country-code-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.country-code-dropdown::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.country-code-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .btn-primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

body.dark-mode .btn-primary:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

body.dark-mode .btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

body.dark-mode .footer {
    background: #ffffff;
    color: #000000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

body.dark-mode .footer-logo {
    color: #000000;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.8;
}

body.dark-mode .footer-section p {
    color: #000000;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

body.dark-mode .footer-section h4 {
    color: #000000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

body.dark-mode .footer-section ul li {
    color: #000000;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

body.dark-mode .footer-section a {
    color: #000000;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #ffffff;
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.2);
    color: #000000;
}

.footer-bottom p {
    color: #ffffff;
}

body.dark-mode .footer-bottom p {
    color: #000000;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

body.dark-mode .footer-links a {
    color: #000000;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.d-lg-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

@media (max-width: 968px) {
    .hero-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img {
        height: 300px;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .tt-style-switch {
        left: 10px;
    }
    
    .theme-segmented-control {
        width: 40px;
    }
    
    .theme-option {
        padding: 6px 3px;
        min-height: 35px;
    }
    
    .theme-text {
        font-size: 14px;
    }
}

/* Tablet breakpoint for better proportions */
@media (max-width: 992px) and (min-width: 769px) {
    .about-row {
        grid-template-columns: 35% 65%;
        gap: 3rem;
    }

    .why-content-row {
        grid-template-columns: 45% 55%;
        gap: 3rem;
    }

    .why-content-img {
        height: 500px;
    }
}

/* Tablet breakpoint for why section */
@media (max-width: 992px) and (min-width: 769px) {
    .why-banner-title {
        margin-bottom: 100px;
    }

    .why-content-section {
        margin-top: -96px; /* 20% of 480px (tablet image height) */
    }

    .why-content-img-wrapper {
        margin-top: -96px; /* 20% of 480px */
    }

    .why-content-row {
        grid-template-columns: 45% 55%;
        gap: 3rem;
        padding: 2rem 0 3rem;
    }

    .why-content-text-wrapper {
        margin-top: 80px;
        padding: 2.5rem;
    }

    .why-content-img {
        height: 480px;
    }

    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .collections-description {
        padding: 0 1.5rem;
    }

    .why-buy-row {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .why-banner {
        height: 250px;
    }

    .why-banner-title {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
        padding: 0 1rem;
        margin-bottom: 50px;
    }

    .why-content-section {
        margin-top: -80px; /* 20% of 400px (mobile image height) */
        padding: 0;
    }

    .why-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .why-content-img-wrapper {
        order: 2;
        margin-top: -80px; /* 20% of 400px */
    }

    .why-content-text-wrapper {
        order: 1;
        margin-top: 0;
        padding: 2rem;
    }

    .why-content-img {
        height: 400px;
    }

    .collections-description {
        padding: 0 1rem;
        text-align: center;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .artist-name-overlay {
        padding: 0.6rem 1rem;
    }

    .artist-name-overlay h3 {
        font-size: 0.9rem;
    }

    .features-grid,

    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-buy-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-buy-cta {
        align-items: flex-start;
    }

    .why-buy-image-wrapper {
        order: 2;
    }

    .why-buy-content-wrapper {
        order: 1;
    }

    .why-buy-title {
        font-size: 2rem;
    }

    .how-it-works-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-it-works-image-wrapper {
        order: 2;
    }

    .how-it-works-content-wrapper {
        order: 1;
    }

    .final-cta-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .final-cta-image-wrapper {
        order: 2;
    }

    .final-cta-content-wrapper {
        order: 1;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .enquery-form-wrapper {
        padding: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .banner-wrapper {
        position: relative;
        padding: 2rem 0;
    }
}
/* Form Popup Styles */
.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.popup-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.success-popup .popup-icon {
    background: #4caf50;
    color: white;
}

.error-popup .popup-icon {
    background: #f44336;
    color: white;
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.popup-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-close {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-playfair);
}

.popup-close:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Terms & Privacy Pages */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.terms-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.terms-section ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.terms-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.terms-section a:hover {
    color: var(--accent-color);
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .last-updated {
    border-top-color: rgba(255, 255, 255, 0.1);
}
