/* ====================================
   Home Sections - Gold Theme
   Main Color: #c67c0f
   ==================================== */

:root {
    --gold-primary: #c67c0f;
    --gold-light: #e09b2c;
    --gold-lighter: #f5b942;
    --gold-dark: #9d6208;
    --gold-darker: #7a4b05;
    --gold-subtle: #fef8f0;
    --gold-soft: #ffe8c8;
    --gradient-gold: linear-gradient(135deg, #c67c0f 0%, #e09b2c 50%, #f5b942 100%);
    --gradient-gold-reverse: linear-gradient(135deg, #f5b942 0%, #e09b2c 50%, #c67c0f 100%);
    --shadow-gold: 0 10px 40px rgba(198, 124, 15, 0.15);
}

/* ====================================
   Common Elements
   ==================================== */
.section-space {
    padding: 100px 0;
    position: relative;
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: var(--gold-soft);
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.gold-badge i {
    color: var(--gold-primary);
    font-size: 18px;
}

.gold-badge span {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.gold-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gold-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.bg-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-lighter) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation: float 10s ease-in-out infinite 2s;
}

.bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    top: 50%;
    left: 5%;
    animation: float 12s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* ====================================
   About Section - Gold Design
   ==================================== */
.about-section-gold {
    background: linear-gradient(180deg, #ffffff 0%, var(--gold-subtle) 100%);
    overflow: hidden;
}

.about-section-gold .container {
    position: relative;
    z-index: 1;
}

.about-visual-wrapper {
    position: relative;
    height: 100%;
}

.about-main-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-visual-wrapper:hover .about-main-image img {
    transform: scale(1.05);
}

.image-shape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 124, 15, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.golden-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--gold-lighter);
    border-radius: 35px;
    pointer-events: none;
    opacity: 0.5;
}

.floating-info-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--gold-primary);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.floating-card-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.pattern-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    opacity: 0.2;
}

.dot-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--gold-primary) 2px, transparent 2px);
    background-size: 20px 20px;
}

.about-content-gold {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.gold-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gold-feature-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.gold-feature-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.gold-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gold-feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold-soft);
    line-height: 1;
}

.feature-info {
    position: relative;
    z-index: 1;
}

.feature-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.feature-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    opacity: 0;
    transition: all 0.4s ease;
}

.gold-feature-card:hover .feature-arrow {
    opacity: 1;
    transform: translateX(-5px);
}

.about-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold-primary,
.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-gold-primary {
    background: var(--gradient-gold);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(198, 124, 15, 0.3);
}

.btn-gold-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-gold-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 124, 15, 0.4);
}

.btn-gold-outline {
    background: white;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 124, 15, 0.3);
}

/* ====================================
   Products Section - Gold Design
   ==================================== */
.products-section-gold {
    background: var(--gold-subtle);
    position: relative;
}

.products-section-gold .container {
    position: relative;
    z-index: 1;
}

.gold-product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.gold-product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold);
}

.product-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--gold-subtle);
}

.product-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gold-product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 124, 15, 0.9) 0%, rgba(224, 155, 44, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gold-product-card:hover .product-hover-overlay {
    opacity: 1;
}

.hover-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 28px;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gold-product-card:hover .hover-icon {
    transform: scale(1) rotate(360deg);
}

.gold-corner-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.gold-shine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.gold-product-card:hover .gold-shine {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        top: -50%;
        right: -50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 100%;
        right: 100%;
        opacity: 0;
    }
}

.product-content-box {
    padding: 30px;
    position: relative;
}

.product-number {
    position: absolute;
    top: -30px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.gold-product-card:hover .product-title {
    color: var(--gold-primary);
}

.product-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 75px;
}

.product-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid var(--gold-soft);
}

.action-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.action-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.gold-product-card:hover .action-text {
    transform: translateX(-5px);
}

.gold-product-card:hover .action-icon {
    background: var(--gradient-gold);
    color: white;
    transform: translateX(-10px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 17px;
}

/* ====================================
   Contact Section - Gold Design
   ==================================== */
.contact-section-gold {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-subtle) 100%);
    position: relative;
}

.contact-section-gold .container {
    position: relative;
    z-index: 1;
}

.contact-info-gold {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-gold);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.info-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gold-info-card {
    background: var(--gold-subtle);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.gold-info-card:hover {
    background: white;
    border-color: var(--gold-light);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(198, 124, 15, 0.1);
}

.info-icon-wrapper {
    flex-shrink: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: transform 0.4s ease;
}

.gold-info-card:hover .info-icon {
    transform: rotate(360deg);
}

.info-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-content a,
.info-content span {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--gold-primary);
}

.contact-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    opacity: 0.2;
}

.deco-circle-1 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: pulse 3s ease-in-out infinite;
}

.deco-circle-2 {
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.contact-form-gold {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-gold);
    height: 100%;
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.form-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.gold-form-group {
    margin-bottom: 20px;
}

.gold-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.required-star {
    color: var(--gold-primary);
    margin-right: 3px;
}

.gold-input-wrapper {
    position: relative;
}

.gold-input-wrapper .input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 16px;
    z-index: 1;
}

.gold-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.gold-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(198, 124, 15, 0.1);
}

.gold-textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 15px;
}

.btn-gold-submit {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(198, 124, 15, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gold-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-gold-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-gold-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 124, 15, 0.4);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.gold-loader {
    display: none;
    text-align: center;
    margin-top: 15px;
    color: var(--gold-primary);
    font-size: 24px;
}

.gold-form-messages {
    margin-top: 20px;
}

.gold-alert-success,
.gold-alert-error {
    display: none;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 10px;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.gold-alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.gold-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Map Section */
.map-section-gold {
    position: relative;
    margin-top: -1px;
}

.map-container-gold {
    position: relative;
}

.map-overlay-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.map-title {
    background: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-title i {
    color: var(--gold-primary);
    font-size: 24px;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 991px) {
    .section-space {
        padding: 70px 0;
    }

    .gold-section-title {
        font-size: 34px;
    }

    .gold-features-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        position: static;
        margin-bottom: 20px;
    }

    .about-cta-buttons {
        justify-content: center;
    }

    .product-image-container {
        height: 280px;
    }

    .contact-info-gold,
    .contact-form-gold {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 50px 0;
    }

    .gold-section-title {
        font-size: 28px;
    }

    .gold-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .about-text {
        font-size: 15px;
    }

    .product-image-container {
        height: 250px;
    }

    .product-content-box {
        padding: 25px 20px;
    }

    .product-title {
        font-size: 19px;
    }

    .contact-info-gold,
    .contact-form-gold {
        padding: 30px 20px;
    }

    .form-heading,
    .info-heading {
        font-size: 24px;
    }

    .btn-gold-primary,
    .btn-gold-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .gold-section-title {
        font-size: 24px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn-gold-primary,
    .btn-gold-outline {
        width: 100%;
    }

    .product-desc {
        min-height: auto;
    }
}

/* ====================================
   Animations
   ==================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* ====================================
   About Section - Hero Variant
   ==================================== */
.about-section-hero {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-subtle) 100%);
    overflow: hidden;
}

.about-section-hero .container { position: relative; z-index: 1; }

.about-hero-pane {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(198,124,15,0.18);
    border-radius: 28px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 12px 40px rgba(198,124,15,0.15);
}

.about-hero-pane .about-text { font-size: 16px; color: #555; line-height: 1.85; }

.about-hero-facts {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px;
}
.fact-chip {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 30px;
    background: var(--gold-soft); color: var(--gold-dark);
    border: 1px solid rgba(198,124,15,0.18);
}
.fact-chip i { color: var(--gold-primary); }

.about-hero-image {
    position: relative; height: 100%; border-radius: 32px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.about-hero-image:hover img { transform: scale(1.08); }
.about-hero-image .hero-ribbon {
    position: absolute; top: 22px; right: 22px; padding: 10px 18px; border-radius: 50px;
    background: var(--gradient-gold); color: #fff; font-weight: 700; font-size: 13px;
    box-shadow: 0 10px 30px rgba(198,124,15,.35);
}
.about-hero-image .hero-shine {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,.15), transparent 45%);
}

/* ====================================
   Products Section - Neo Cards Variant
   ==================================== */
.products-section-neo {
    position: relative;
    background: linear-gradient(180deg, var(--gold-subtle) 0%, #ffffff 100%);
}

.neo-card {
    position: relative; background: #fff; border-radius: 26px; overflow: hidden;
    border: 1px solid rgba(198,124,15,0.12);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
    height: 100%; display: flex; flex-direction: column;
}
.neo-card:hover { transform: translateY(-10px); box-shadow: 0 18px 50px rgba(198,124,15,.20); }

.neo-media { position: relative; height: 300px; overflow: hidden; background: var(--gold-subtle); }
.neo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.neo-card:hover .neo-media img { transform: scale(1.12) rotate(1.5deg); }

.neo-overlay { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .4s; background: linear-gradient(135deg, rgba(198,124,15,.85), rgba(224,155,44,.85)); }
.neo-card:hover .neo-overlay { opacity: 1; }
.neo-overlay .neo-action { width: 68px; height: 68px; border-radius: 50%; background: #fff; color: var(--gold-primary); display: grid; place-items: center; font-size: 26px; transform: scale(0); transition: transform .5s cubic-bezier(.68,-.55,.265,1.55); }
.neo-card:hover .neo-overlay .neo-action { transform: scale(1); }

.neo-badge {
    position: absolute; top: 18px; left: 18px; width: 54px; height: 54px; border-radius: 50%;
    background: #fff; color: var(--gold-primary); display: grid; place-items: center; font-size: 19px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18); z-index: 2;
}

.neo-body { padding: 26px; position: relative; flex: 1; display: flex; flex-direction: column; }
.neo-index { position: absolute; top: -28px; right: 26px; font-size: 56px; font-weight: 900; opacity: .18; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.neo-title { font-size: 21px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; transition: color .3s; }
.neo-card:hover .neo-title { color: var(--gold-primary); }
.neo-desc { font-size: 14.5px; color: #666; line-height: 1.75; margin-bottom: 18px; min-height: 72px; }
.neo-footer { margin-top: auto; padding-top: 16px; border-top: 2px solid var(--gold-soft); display: flex; align-items: center; justify-content: space-between; }
.neo-more { color: var(--gold-primary); font-weight: 700; }
.neo-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-primary); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.neo-card:hover .neo-arrow { background: var(--gradient-gold); color: #fff; transform: translateX(-8px); }

@media (max-width: 991px) {
  .about-hero-pane { padding: 28px; }
  .neo-media { height: 260px; }
}
@media (max-width: 575px) {
  .about-hero-pane { padding: 22px; }
  .neo-media { height: 230px; }
}

/* ====================================
   Contact Section - Hero + Glass Variant
   ==================================== */
.contact-section-hero {
    position: relative;
    background: linear-gradient(120deg, var(--gold-subtle) 0%, #ffffff 40%, var(--gold-subtle) 100%);
    overflow: hidden;
}

.contact-section-hero .container { position: relative; z-index: 1; }

/* Subtle background ornaments */
.contact-section-hero::before,
.contact-section-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.contact-section-hero::before {
    width: 420px; height: 420px; right: -120px; top: -120px;
    background: radial-gradient(circle, rgba(198,124,15,.12) 0%, rgba(198,124,15,0) 70%);
}
.contact-section-hero::after {
    width: 520px; height: 520px; left: -160px; bottom: -160px;
    background: radial-gradient(circle, rgba(245,185,66,.15) 0%, rgba(245,185,66,0) 70%);
}

/* Left info pane (hero style) */
.hero-info-pane {
    background: linear-gradient(135deg, rgba(198,124,15,0.12), rgba(224,155,44,0.12));
    border: 1px solid rgba(198,124,15,0.18);
    border-radius: 28px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(198, 124, 15, 0.12);
    position: relative;
    overflow: hidden;
}
.hero-info-pane .info-heading { margin-bottom: 22px; }
.hero-info-pane .info-heading::after { background: var(--gradient-gold); }

.hero-info-card {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(198,124,15,0.18);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex; align-items: center; gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-info-card + .hero-info-card { margin-top: 14px; }
.hero-info-card:hover { transform: translateX(6px); box-shadow: 0 8px 24px rgba(198,124,15,.15); }

.hero-info-card .info-icon { width: 52px; height: 52px; border-radius: 14px; font-size: 22px; }
.hero-info-card .info-content h5 { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: #1a1a1a; }
.hero-info-card .info-content a, .hero-info-card .info-content span { font-size: 14px; color: #555; }

/* Right form - glass card */
.contact-form-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(198,124,15,0.18);
    border-radius: 28px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 12px 40px rgba(198,124,15,0.15);
}

.contact-form-glass .form-heading { margin-bottom: 22px; }
.contact-form-glass .form-heading::after { background: var(--gradient-gold); }

/* Reuse existing input/button tokens */
.contact-form-glass .gold-form-group { margin-bottom: 18px; }
.contact-form-glass .gold-input { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.06); }
.contact-form-glass .gold-input:focus { border-color: var(--gold-primary); box-shadow: 0 0 0 4px rgba(198,124,15,0.10); }
.contact-form-glass .btn-gold-submit { box-shadow: 0 10px 30px rgba(198,124,15,0.30); }

/* Section header tweak */
.contact-section-hero .gold-badge { background: rgba(255,232,200,0.7); }

@media (max-width: 991px) {
  .hero-info-pane, .contact-form-glass { margin-bottom: 20px; padding: 28px; }
}

@media (max-width: 575px) {
  .hero-info-card { padding: 16px; }
  .contact-form-glass { padding: 24px; }
}

/* ====================================
   Section Spacing
   ==================================== */
.section-space {
    padding: 80px 0;
}

/* ====================================
   About Section
   ==================================== */
.about-section-modern {
    background: linear-gradient(to bottom, #ffffff 0%, var(--gold-subtle) 100%);
    position: relative;
    overflow: hidden;
}

.about-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 124, 15, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(198, 124, 15, 0.2);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(198, 124, 15, 0.3) 100%);
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    opacity: 0.3;
}

.decoration-circle-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
    animation: pulse 3s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: pulse 3s ease-in-out infinite 1s;
}

.decoration-circle-3 {
    width: 80px;
    height: 80px;
    bottom: 50%;
    right: -15px;
    animation: pulse 3s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.stat-content h4 {
    font-size: 14px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.section-label {
    margin-bottom: 15px;
}

.label-text {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.title-line {
    display: block;
}

.title-line-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================================
   Products Section
   ==================================== */
.products-section {
    background: var(--gold-subtle);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 124, 15, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-title .bg-text {
    font-size: 120px;
    font-weight: 900;
    color: var(--gold-soft);
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    letter-spacing: 10px;
}

.product-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(198, 124, 15, 0.2);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-card-image {
    width: 100%;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-card-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(198, 124, 15, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    text-align: center;
}

.view-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    color: var(--gold-primary);
    border-radius: 50%;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .view-product-btn {
    transform: rotate(45deg);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(198, 124, 15, 0.4);
}

.product-card-content {
    padding: 25px;
}

.product-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-card-title {
    color: var(--gold-primary);
}

.product-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.product-card-footer {
    padding-top: 15px;
    border-top: 2px solid var(--gold-soft);
}

.read-more-link {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-card-modern:hover .read-more-link {
    gap: 15px;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.product-card-modern:hover .read-more-link i {
    transform: translateX(5px);
}

/* ====================================
   Contact Section
   ==================================== */
.contact-section-modern {
    background: linear-gradient(135deg, var(--gold-subtle) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 124, 15, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(198, 124, 15, 0.1);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group-modern .required {
    color: var(--gold-primary);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 16px;
    z-index: 1;
}

.form-control-modern {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(198, 124, 15, 0.1);
}

textarea.form-control-modern {
    min-height: 120px;
    resize: vertical;
    padding-top: 14px;
}

.btn-submit-modern {
    background: var(--gradient-gold);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(198, 124, 15, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(198, 124, 15, 0.4);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* Contact Info */
.contact-info-wrapper {
    height: 100%;
}

.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-primary);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(198, 124, 15, 0.15);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Social Links */
.social-links-modern {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gold-soft);
    color: var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-3px);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 991px) {
    .section-space {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .section-title .title {
        font-size: 32px;
    }
    
    .section-title .bg-text {
        font-size: 80px;
    }
    
    .about-stats {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 28px;
    }
    
    .section-title .title {
        font-size: 28px;
    }
    
    .section-title .bg-text {
        font-size: 60px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .product-card-image-wrapper {
        height: 220px;
    }
}

/* ====================================
   Animations
   ==================================== */
.fade_bottom {
    animation: fadeInUp 0.8s ease-out;
}

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