.elementor-638 .elementor-element.elementor-element-a19c3ca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:80px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-638 .elementor-element.elementor-element-0f2bc16{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-638 .elementor-element.elementor-element-e109beb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-638 .elementor-element.elementor-element-981d756{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-638 .elementor-element.elementor-element-a19c3ca{--margin-top:-174px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for shortcode, class: .elementor-element-0f2bc16 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

.tm-section {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5537 50%, #1a3d2e 100%);
    padding: 80px 20px 80px;
    position: relative;
    overflow: visible; /* Changed from hidden to show dropdown */
}

.tm-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://kinraragolfclub.com.my/wp-content/uploads/2026/02/20260122_MSPGA-0117-2-1-scaled.jpg') center/cover;
    opacity: 0.15;
}

.tm-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.tm-header {
    text-align: center;
    margin-bottom: 40px;
}

.tm-club-name {
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tm-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 10vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tm-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 5vw, 36px);
    font-style: italic;
    color: #c9a86c;
    margin-bottom: 30px;
}

.tm-pricing-block {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.tm-price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tm-price-detail {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

.tm-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
}

.tm-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
}

.tm-btn-primary {
    background: #c9a86c;
    color: #1a3d2e;
    border: 2px solid #c9a86c;
}

.tm-btn-primary:hover {
    background: transparent;
    color: #c9a86c;
}

.tm-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.tm-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.tm-arrow {
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* --- DROPDOWN LOGIC --- */
.tm-dropdown {
    position: relative;
}

.tm-dropdown-menu {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.tm-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tm-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1a3d2e;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    text-align: left;
}

.tm-dropdown-menu a:last-child { border-bottom: none; }

.tm-dropdown-menu a:hover {
    background: #f9f6f0;
    color: #c9a86c;
}

.tm-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 25px;
    border: 2px solid #c9a86c;
    margin-bottom: 35px;
}

.tm-benefits {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: left;
}

.tm-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.tm-benefit-icon {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #c9a86c;
    border-radius: 50%;
    margin-top: 7px;
}

@media (max-width: 768px) {
    .tm-section { padding: 160px 15px 40px; }
    .tm-benefits { padding: 0 10px; }
    .tm-price { font-size: 36px; }
}/* End custom CSS */