* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #1E90FF;
    --secondary-gold: #63B3FF;
    --dark-gold: #0B66D6;
    --black: #0A0A0A;
    --near-black: #111111;
    --charcoal: #1A1A1A;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-light: rgba(30, 144, 255, 0.15);
--shadow-dark: rgba(0, 0, 0, 0.4);
    --section-bg-rgb: 10,10,10;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Ultra Smooth */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo h2 {
    color: var(--secondary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-gold);
    
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.025em;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    position: relative;
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(var(--section-bg-rgb), 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Hero Section - Luxurious */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(30, 144, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(99, 179, 255, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--black) 0%, var(--near-black) 50%, var(--black) 100%);
    position: relative;
    padding-top: 100px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.8rem;
    z-index: 2;
    color: var(--primary-gold);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 30%, #63B3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0.95;
    z-index: 2;
    line-height: 1.75;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}

.cta-button {
    padding: 1.4rem 3.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.025em;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--black);
    box-shadow:
        0 20px 40px var(--shadow-light),
        0 0 0 1px rgba(30, 144, 255, 0.3);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 30px 60px var(--shadow-light),
        0 0 0 1px rgba(30, 144, 255, 0.4);
    color: var(--black);
}

.cta-button.secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.cta-button.secondary:hover {
    background: var(--glass-hover);
    border-color: var(--primary-gold);
    color: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px var(--shadow-dark);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 5rem;
    color: var(--primary-gold);
    font-size: 1.6rem;
    animation: bounce 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    z-index: 2;
}

/* Section Styles - Elegant */
section {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-gold) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.88;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--near-black) 0%, var(--charcoal) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.85;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(30, 144, 255, 0.1);
    transform: translateX(8px);
}

.feature-item i {
    font-size: 1.4rem;
    width: 32px;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.glass-card {
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 25px 50px var(--shadow-dark),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(30, 144, 255, 0.03) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 40px 80px var(--shadow-dark),
        0 0 0 1px rgba(30, 144, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-card i {
    font-size: 4.5rem;
    color: var(--primary-gold);
    z-index: 1;
}

/* Products Section - Premium Cards */
.products {
    background: var(--black);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover::before {
    opacity: 0.5;
}

.product-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 40px 80px var(--shadow-dark),
        0 0 0 1px rgba(30, 144, 255, 0.2);
    border-color: rgba(30, 144, 255, 0.3);
}

.product-card:hover::before {
    opacity: 0.5;
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.12) rotate(1deg);
}

.product-info {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-weight: 400;
}

.subparts {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subparts li {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.subparts li:hover {
    color: var(--secondary-gold);
    padding-left: 0.5rem;
    background: rgba(30, 144, 255, 0.05);
    border-radius: 6px;
    
}

.subparts li:last-child {
    border-bottom: none;
}

.product-title.active {
    color: var(--primary-gold);
}

/* Markets Section */
.markets {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--near-black) 100%);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.market-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 240px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-card:hover::before {
    opacity: 0.4;
}

.market-card:hover {
    transform: translateY(-12px);
    background: rgba(30, 144, 255, 0.06);
    border-color: rgba(30, 144, 255, 0.2);
    box-shadow: 
        0 30px 60px var(--shadow-dark),
        0 0 0 1px rgba(30, 144, 255, 0.15);
}

.market-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.market-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, var(--black) 0%, var(--near-black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
}

.feature-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.feature-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--near-black) 0%, var(--black) 100%);
    color: rgba(255,255,255,0.9);
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 240px 240px;
    gap: 2.5rem;
    align-items: start;
    padding: 4rem 0;
}

.footer .footer-brand h2 {
    margin-bottom: 0.5rem;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
}

.footer .footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.footer .social-icons a {
    color: rgba(255,255,255,0.9);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.9;
}
.footer {
    background: linear-gradient(180deg, var(--near-black) 0%, var(--black) 100%);
    color: rgba(255,255,255,0.9);
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 240px 240px;
    gap: 2.5rem;
    align-items: start;
    padding: 4rem 0;
}

.footer .footer-brand h2 {
    margin-bottom: 0.5rem;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
}

.footer .footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.footer .social-icons a {
    color: rgba(255,255,255,0.9);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.9;
}/ *   I n q u i r y   P a g e   S t y l e s   * / 
 . i n q u i r y - s e c t i o n   { 
         m i n - h e i g h t :   8 0 v h ; 
         p a d d i n g :   6 r e m   0   4 r e m ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - b l a c k )   0 % ,   v a r ( - - n e a r - b l a c k )   1 0 0 % ) ; 
 } 
 
 . i n q u i r y - c o n t a i n e r   { 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 2 6 ,   2 6 ,   2 6 ,   0 . 9 5 )   0 % ,   r g b a ( 1 0 ,   1 0 ,   1 0 ,   0 . 9 8 )   1 0 0 % ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ; 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         p a d d i n g :   3 r e m ; 
         b o x - s h a d o w :   0   2 5 p x   5 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ,   0   0   0   1 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 . s e l e c t e d - p r o d u c t - i n f o   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 0 5 ) ,   r g b a ( 9 9 ,   1 7 9 ,   2 5 5 ,   0 . 0 5 ) ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 1 ) ; 
         p a d d i n g :   1 . 5 r e m   2 r e m ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         m a r g i n - b o t t o m :   2 r e m ; 
         b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - p r i m a r y - g o l d ) ; 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . s e l e c t e d - p r o d u c t - i n f o : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         b o t t o m :   0 ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 0 2 ) ,   t r a n s p a r e n t ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p o i n t e r - e v e n t s :   n o n e ; 
 } 
 
 . s e l e c t e d - p r o d u c t - i n f o   h 3   { 
         m a r g i n :   0 ; 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   1 ; 
         c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
         f o n t - s i z e :   1 . 2 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . s e l e c t e d - p r o d u c t - i n f o   h 3   s p a n   { 
         c o l o r :   v a r ( - - p r i m a r y - g o l d ) ; 
 } 
 
 . i n q u i r y - f o r m   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   1 . 5 r e m ; 
 } 
 
 . f o r m - r o w   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   1 . 5 r e m ; 
 } 
 
 . f o r m - g r o u p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 . f o r m - g r o u p   l a b e l   { 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
         c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 
 . f o r m - g r o u p   i n p u t , 
 . f o r m - g r o u p   t e x t a r e a   { 
         p a d d i n g :   0 . 8 7 5 r e m   1 r e m ; 
         b o r d e r :   2 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 } 
 
 . f o r m - g r o u p   i n p u t : : p l a c e h o l d e r , 
 . f o r m - g r o u p   t e x t a r e a : : p l a c e h o l d e r   { 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . f o r m - g r o u p   i n p u t : f o c u s , 
 . f o r m - g r o u p   t e x t a r e a : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - g o l d ) ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 1 5 ) ,   0   0   2 0 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 1 ) ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 } 
 
 . f o r m - g r o u p   i n p u t . e r r o r , 
 . f o r m - g r o u p   t e x t a r e a . e r r o r   { 
         b o r d e r - c o l o r :   # f f 4 7 5 7   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 2 5 5 ,   7 1 ,   8 7 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 } 
 
 . f o r m - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         g a p :   1 r e m ; 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
         m a r g i n - t o p :   2 r e m ; 
         p a d d i n g - t o p :   2 r e m ; 
         b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ; 
 } 
 
 . b t n - p r i m a r y , 
 . b t n - s e c o n d a r y   { 
         p a d d i n g :   0 . 8 7 5 r e m   2 . 5 r e m ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . b t n - p r i m a r y   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y - g o l d ) ,   v a r ( - - s e c o n d a r y - g o l d ) ) ; 
         c o l o r :   w h i t e ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . b t n - p r i m a r y : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   - 1 0 0 % ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ,   t r a n s p a r e n t ) ; 
         t r a n s i t i o n :   l e f t   0 . 5 s ; 
 } 
 
 . b t n - p r i m a r y : h o v e r : : b e f o r e   { 
         l e f t :   1 0 0 % ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . b t n - s e c o n d a r y   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         c o l o r :   v a r ( - - t e x t - l i g h t ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 } 
 
 . b t n - s e c o n d a r y : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 } 
 
 . b t n - p r i m a r y : d i s a b l e d   { 
         o p a c i t y :   0 . 7 ; 
         c u r s o r :   n o t - a l l o w e d ; 
         t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
 } 
 
 . b t n - p r i m a r y : d i s a b l e d : h o v e r   { 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 3 )   ! i m p o r t a n t ; 
 } 
 
 / *   R e s p o n s i v e   D e s i g n   f o r   I n q u i r y   F o r m   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . i n q u i r y - c o n t a i n e r   { 
                 m a r g i n :   0   1 r e m ; 
                 p a d d i n g :   2 r e m   1 . 5 r e m ; 
         } 
 
         . f o r m - r o w   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   1 r e m ; 
         } 
 
         . f o r m - a c t i o n s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
         } 
 
         . b t n - p r i m a r y , 
         . b t n - s e c o n d a r y   { 
                 w i d t h :   1 0 0 % ; 
         } 
 } 
 
 
/* Inquiry Page Styles */
.inquiry-section {
    min-height: 80vh;
    padding: 6rem 0 4rem;
    background: var(--black);
}

.inquiry-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px var(--shadow-dark), 0 0 0 1px rgba(30, 144, 255, 0.1);
}

.selected-product-info {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(99, 179, 255, 0.05));
    border: 1px solid rgba(30, 144, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-gold);
    position: relative;
}

.selected-product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.02), transparent);
    border-radius: 12px;
    pointer-events: none;
}

.selected-product-info h3 {
    margin: 0;
    position: relative;
    z-index: 1;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.selected-product-info h3 span {
    color: var(--primary-gold);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.15), 0 0 20px rgba(30, 144, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4757 !important;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15) !important;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled:hover {
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3) !important;
}

/* Responsive Design for Inquiry Form */
@media (max-width: 768px) {
    .inquiry-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
